Skip to content

Commit 2123ab5

Browse files
Nandsingh90root
andauthored
Version 8.2.0-v2.1-25.2.00.00 release (#472)
Co-authored-by: root <root@devcenteradmin.docusigntest.com>
1 parent 4a595a1 commit 2123ab5

32 files changed

+802
-191
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# DocuSign C# Client Changelog
22

3+
## [v8.2.0] - eSignature API v2.1-25.2.00.00 - 2025-05-21
4+
### Changed
5+
- Added support for version v2.1-25.2.00.00 of the DocuSign ESignature API.
6+
- Updated the SDK release version.
7+
38
## [v8.1.0] - eSignature API v2.1-25.1.00.02 - 2025-04-14
49
### Changed
510
- Added support for version v2.1-25.1.00.02 of the DocuSign ESignature API.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This client SDK is provided as open source, which enables you to customize its f
3333
<a id="versionInformation"></a>
3434
### Version Information
3535
- **API version**: v2.1
36-
- **Latest SDK version (Including prerelease)**: 8.1.0
36+
- **Latest SDK version (Including prerelease)**: 8.2.0
3737

3838
<a id="requirements"></a>
3939
### Requirements

sdk/DocuSign.eSign.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.eSign", "src\DocuSign.eSign\DocuSign.eSign.csproj", "{1DC3A90B-4AB0-4044-8744-59BD52F9ADC9}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.eSign", "src\DocuSign.eSign\DocuSign.eSign.csproj", "{46ECAF20-1BD2-45B3-90B2-878DD6DD2BF6}"
66
EndProject
77
Global
88
GlobalSection(SolutionConfigurationPlatforms) = preSolution
99
Debug|Any CPU = Debug|Any CPU
1010
Release|Any CPU = Release|Any CPU
1111
EndGlobalSection
1212
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13-
{1DC3A90B-4AB0-4044-8744-59BD52F9ADC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14-
{1DC3A90B-4AB0-4044-8744-59BD52F9ADC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
15-
{1DC3A90B-4AB0-4044-8744-59BD52F9ADC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
16-
{1DC3A90B-4AB0-4044-8744-59BD52F9ADC9}.Release|Any CPU.Build.0 = Release|Any CPU
13+
{46ECAF20-1BD2-45B3-90B2-878DD6DD2BF6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{46ECAF20-1BD2-45B3-90B2-878DD6DD2BF6}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{46ECAF20-1BD2-45B3-90B2-878DD6DD2BF6}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{46ECAF20-1BD2-45B3-90B2-878DD6DD2BF6}.Release|Any CPU.Build.0 = Release|Any CPU
1717
EndGlobalSection
1818
GlobalSection(SolutionProperties) = preSolution
1919
HideSolutionNode = FALSE

sdk/src/DocuSign.eSign/Api/AccountsApi.cs

Lines changed: 20 additions & 16 deletions
Large diffs are not rendered by default.

sdk/src/DocuSign.eSign/Api/EnvelopesApi.cs

Lines changed: 46 additions & 18 deletions
Large diffs are not rendered by default.

sdk/src/DocuSign.eSign/Api/TemplatesApi.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8971,6 +8971,8 @@ public async System.Threading.Tasks.Task<ApiResponse<DocumentFieldsInformation>>
89718971
/// </summary>
89728972
public class ListDocumentsOptions
89738973
{
8974+
///
8975+
public string includeAgreementType {get; set;}
89748976
///
89758977
public string includeTabs {get; set;}
89768978
}
@@ -9035,6 +9037,7 @@ public ApiResponse<TemplateDocumentsResult> ListDocumentsWithHttpInfo(string acc
90359037
if (templateId != null) localVarPathParams.Add("templateId", this.ApiClient.ParameterToString(templateId)); // path parameter
90369038
if (options != null)
90379039
{
9040+
if (options.includeAgreementType != null) localVarQueryParams.Add("include_agreement_type", this.ApiClient.ParameterToString(options.includeAgreementType)); // query parameter
90389041
if (options.includeTabs != null) localVarQueryParams.Add("include_tabs", this.ApiClient.ParameterToString(options.includeTabs)); // query parameter
90399042
}
90409043

@@ -9123,6 +9126,7 @@ public async System.Threading.Tasks.Task<ApiResponse<TemplateDocumentsResult>> L
91239126
if (templateId != null) localVarPathParams.Add("templateId", this.ApiClient.ParameterToString(templateId)); // path parameter
91249127
if (options != null)
91259128
{
9129+
if (options.includeAgreementType != null) localVarQueryParams.Add("include_agreement_type", this.ApiClient.ParameterToString(options.includeAgreementType)); // query parameter
91269130
if (options.includeTabs != null) localVarQueryParams.Add("include_tabs", this.ApiClient.ParameterToString(options.includeTabs)); // query parameter
91279131
}
91289132

sdk/src/DocuSign.eSign/Client/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class Configuration
2626
/// Version of the package.
2727
/// </summary>
2828
/// <value>Version of the package.</value>
29-
public const string Version = "8.1.0";
29+
public const string Version = "8.2.0";
3030

3131
/// <summary>
3232
/// Identifier for ISO 8601 DateTime Format

sdk/src/DocuSign.eSign/DocuSign.eSign.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<RootNamespace>DocuSign.eSign</RootNamespace>
1717
<AssemblyName>DocuSign.eSign</AssemblyName>
1818
<NeutralLanguage>en-US</NeutralLanguage>
19-
<VersionPrefix>8.1.0</VersionPrefix>
19+
<VersionPrefix>8.2.0</VersionPrefix>
2020
<VersionSuffix/>
2121
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
2222
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -26,7 +26,7 @@
2626
<PackageLicenseUrl>https://github.com/docusign/docusign-esign-csharp-client/blob/master/LICENSE</PackageLicenseUrl>
2727
<RepositoryUrl>https://github.com/docusign/docusign-esign-csharp-client</RepositoryUrl>
2828
<RepositoryType>git</RepositoryType>
29-
<PackageReleaseNotes>[v8.1.0] - ESignature API v2.1-25.1.00.02 - 4/14/2025</PackageReleaseNotes>
29+
<PackageReleaseNotes>[v8.2.0] - ESignature API v2.1-25.2.00.00 - 5/20/2025</PackageReleaseNotes>
3030
</PropertyGroup>
3131
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462'">
3232
<DefineConstants>NET462</DefineConstants>

sdk/src/DocuSign.eSign/Model/AccountInformation.cs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ public AccountInformation()
6262
/// <param name="ForgottenPasswordQuestionsCount"> A complex element that contains up to four Question/Answer pairs for forgotten password information for a user..</param>
6363
/// <param name="FreeEnvelopeSendsRemainingForAdvancedDocGen">FreeEnvelopeSendsRemainingForAdvancedDocGen.</param>
6464
/// <param name="IsDowngrade">IsDowngrade.</param>
65+
/// <param name="IsFreeToTrialEligible">IsFreeToTrialEligible.</param>
6566
/// <param name="PaymentMethod">PaymentMethod.</param>
6667
/// <param name="PlanClassification">Identifies the type of plan. Examples include Business, Corporate, Enterprise, Free..</param>
6768
/// <param name="PlanEndDate">The date that the current plan will end..</param>
@@ -74,7 +75,7 @@ public AccountInformation()
7475
/// <param name="SuspensionDate">SuspensionDate.</param>
7576
/// <param name="SuspensionStatus">SuspensionStatus.</param>
7677
/// <param name="UseDisplayAppliance">UseDisplayAppliance.</param>
77-
public AccountInformation(string AccountIdGuid = default(string), string AccountName = default(string), AccountSettingsInformation AccountSettings = default(AccountSettingsInformation), string AllowTransactionRooms = default(string), string BillingPeriodDaysRemaining = default(string), string BillingPeriodEndDate = default(string), string BillingPeriodEnvelopesAllowed = default(string), string BillingPeriodEnvelopesSent = default(string), string BillingPeriodStartDate = default(string), string BillingProfile = default(string), BrandsResponse Brands = default(BrandsResponse), string CanUpgrade = default(string), string ConnectPermission = default(string), string CreatedDate = default(string), string CurrencyCode = default(string), string CurrentPlanId = default(string), string DisplayApplianceStartUrl = default(string), string DisplayApplianceUrl = default(string), string DistributorCode = default(string), string DocuSignLandingUrl = default(string), Dictionary<string, string> DssValues = default(Dictionary<string, string>), string EnvelopeSendingBlocked = default(string), string EnvelopeUnitPrice = default(string), string ExternalAccountId = default(string), string ForgottenPasswordQuestionsCount = default(string), int? FreeEnvelopeSendsRemainingForAdvancedDocGen = default(int?), string IsDowngrade = default(string), string PaymentMethod = default(string), string PlanClassification = default(string), string PlanEndDate = default(string), string PlanName = default(string), string PlanStartDate = default(string), List<RecipientDomain> RecipientDomains = default(List<RecipientDomain>), string SeatsAllowed = default(string), string SeatsInUse = default(string), string Status21CFRPart11 = default(string), string SuspensionDate = default(string), string SuspensionStatus = default(string), bool? UseDisplayAppliance = default(bool?))
78+
public AccountInformation(string AccountIdGuid = default(string), string AccountName = default(string), AccountSettingsInformation AccountSettings = default(AccountSettingsInformation), string AllowTransactionRooms = default(string), string BillingPeriodDaysRemaining = default(string), string BillingPeriodEndDate = default(string), string BillingPeriodEnvelopesAllowed = default(string), string BillingPeriodEnvelopesSent = default(string), string BillingPeriodStartDate = default(string), string BillingProfile = default(string), BrandsResponse Brands = default(BrandsResponse), string CanUpgrade = default(string), string ConnectPermission = default(string), string CreatedDate = default(string), string CurrencyCode = default(string), string CurrentPlanId = default(string), string DisplayApplianceStartUrl = default(string), string DisplayApplianceUrl = default(string), string DistributorCode = default(string), string DocuSignLandingUrl = default(string), Dictionary<string, string> DssValues = default(Dictionary<string, string>), string EnvelopeSendingBlocked = default(string), string EnvelopeUnitPrice = default(string), string ExternalAccountId = default(string), string ForgottenPasswordQuestionsCount = default(string), int? FreeEnvelopeSendsRemainingForAdvancedDocGen = default(int?), string IsDowngrade = default(string), string IsFreeToTrialEligible = default(string), string PaymentMethod = default(string), string PlanClassification = default(string), string PlanEndDate = default(string), string PlanName = default(string), string PlanStartDate = default(string), List<RecipientDomain> RecipientDomains = default(List<RecipientDomain>), string SeatsAllowed = default(string), string SeatsInUse = default(string), string Status21CFRPart11 = default(string), string SuspensionDate = default(string), string SuspensionStatus = default(string), bool? UseDisplayAppliance = default(bool?))
7879
{
7980
this.AccountIdGuid = AccountIdGuid;
8081
this.AccountName = AccountName;
@@ -103,6 +104,7 @@ public AccountInformation()
103104
this.ForgottenPasswordQuestionsCount = ForgottenPasswordQuestionsCount;
104105
this.FreeEnvelopeSendsRemainingForAdvancedDocGen = FreeEnvelopeSendsRemainingForAdvancedDocGen;
105106
this.IsDowngrade = IsDowngrade;
107+
this.IsFreeToTrialEligible = IsFreeToTrialEligible;
106108
this.PaymentMethod = PaymentMethod;
107109
this.PlanClassification = PlanClassification;
108110
this.PlanEndDate = PlanEndDate;
@@ -268,6 +270,11 @@ public AccountInformation()
268270
[DataMember(Name="isDowngrade", EmitDefaultValue=false)]
269271
public string IsDowngrade { get; set; }
270272
/// <summary>
273+
/// Gets or Sets IsFreeToTrialEligible
274+
/// </summary>
275+
[DataMember(Name="isFreeToTrialEligible", EmitDefaultValue=false)]
276+
public string IsFreeToTrialEligible { get; set; }
277+
/// <summary>
271278
/// Gets or Sets PaymentMethod
272279
/// </summary>
273280
[DataMember(Name="paymentMethod", EmitDefaultValue=false)]
@@ -366,6 +373,7 @@ public override string ToString()
366373
sb.Append(" ForgottenPasswordQuestionsCount: ").Append(ForgottenPasswordQuestionsCount).Append("\n");
367374
sb.Append(" FreeEnvelopeSendsRemainingForAdvancedDocGen: ").Append(FreeEnvelopeSendsRemainingForAdvancedDocGen).Append("\n");
368375
sb.Append(" IsDowngrade: ").Append(IsDowngrade).Append("\n");
376+
sb.Append(" IsFreeToTrialEligible: ").Append(IsFreeToTrialEligible).Append("\n");
369377
sb.Append(" PaymentMethod: ").Append(PaymentMethod).Append("\n");
370378
sb.Append(" PlanClassification: ").Append(PlanClassification).Append("\n");
371379
sb.Append(" PlanEndDate: ").Append(PlanEndDate).Append("\n");
@@ -549,6 +557,11 @@ public bool Equals(AccountInformation other)
549557
this.IsDowngrade != null &&
550558
this.IsDowngrade.Equals(other.IsDowngrade)
551559
) &&
560+
(
561+
this.IsFreeToTrialEligible == other.IsFreeToTrialEligible ||
562+
this.IsFreeToTrialEligible != null &&
563+
this.IsFreeToTrialEligible.Equals(other.IsFreeToTrialEligible)
564+
) &&
552565
(
553566
this.PaymentMethod == other.PaymentMethod ||
554567
this.PaymentMethod != null &&
@@ -676,6 +689,8 @@ public override int GetHashCode()
676689
hash = hash * 59 + this.FreeEnvelopeSendsRemainingForAdvancedDocGen.GetHashCode();
677690
if (this.IsDowngrade != null)
678691
hash = hash * 59 + this.IsDowngrade.GetHashCode();
692+
if (this.IsFreeToTrialEligible != null)
693+
hash = hash * 59 + this.IsFreeToTrialEligible.GetHashCode();
679694
if (this.PaymentMethod != null)
680695
hash = hash * 59 + this.PaymentMethod.GetHashCode();
681696
if (this.PlanClassification != null)

0 commit comments

Comments
 (0)