Skip to content

Commit

Permalink
Version 3.18.0-v2.1-22.1.01.00 release (#230)
Browse files Browse the repository at this point in the history
Co-authored-by: root <[email protected]>
  • Loading branch information
RajRele and root authored Apr 12, 2022
1 parent 9225533 commit 39e670d
Show file tree
Hide file tree
Showing 24 changed files with 1,523 additions and 380 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# DocuSign Java Client Changelog
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.

## [v3.18.0] - eSignature API v2.1-22.1.01.00 - 2022-04-08
### Changed
- Added support for version v2.1-22.1.01.00 of the DocuSign ESignature API.
- Updated the SDK release version.

### Breaking
- Following models are renamed

- `ScheduledSendingApiModel` is renamed to `ScheduledSending`
- `DelayedRoutingApiModel` is renamed to `DelayedRouting`

## [v3.17.1] - eSignature API v2.1-21.4.02.00 - 2022-02-12
### Changed
- Added support for version v2.1-21.4.02.00 of the DocuSign ESignature API.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This SDK is provided as open source, which enables you to customize its function
<dependency>
<groupId>com.docusign</groupId>
<artifactId>docusign-esign-java</artifactId>
<version>3.17.0-RC1</version>
<version>3.18.0</version>
</dependency>
```
8. If your project is still open, restart Eclipse.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.docusign'
version = '3.17.0-RC1'
version = '3.18.0'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<artifactId>docusign-esign-java</artifactId>
<packaging>jar</packaging>
<name>docusign-esign-java</name>
<version>3.17.1</version>
<version>3.18.0</version>
<description>The official DocuSign eSignature JAVA client is based on version 2 of the DocuSign REST API and provides libraries for JAVA application integration. It is recommended that you use this version of the library for new development.</description>
<url>https://developers.docusign.com</url>

Expand Down
76 changes: 57 additions & 19 deletions src/main/java/com/docusign/esign/api/BulkEnvelopesApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,6 @@ public class GetBulkSendBatchEnvelopesOptions
private String searchText = null;
private String startPosition = null;
private String status = null;
private String userId = null;

/**
* setCount method.
Expand Down Expand Up @@ -394,22 +393,6 @@ public void setStatus(String status) {
public String getStatus() {
return this.status;
}

/**
* setUserId method.
*/
public void setUserId(String userId) {
this.userId = userId;
}

/**
* getUserId method.
*
* @return String
*/
public String getUserId() {
return this.userId;
}
}

/**
Expand Down Expand Up @@ -470,8 +453,6 @@ public EnvelopesInformation getBulkSendBatchEnvelopes(String accountId, String b
localVarQueryParams.addAll(apiClient.parameterToPair("start_position", options.startPosition));
}if (options != null) {
localVarQueryParams.addAll(apiClient.parameterToPair("status", options.status));
}if (options != null) {
localVarQueryParams.addAll(apiClient.parameterToPair("user_id", options.userId));
}


Expand Down Expand Up @@ -559,9 +540,12 @@ public class GetBulkSendBatchesOptions
{
private String batchIds = null;
private String count = null;
private String fromDate = null;
private String searchText = null;
private String startPosition = null;
private String status = null;
private String toDate = null;
private String userId = null;

/**
* setBatchIds method.
Expand Down Expand Up @@ -595,6 +579,22 @@ public String getCount() {
return this.count;
}

/**
* setFromDate method.
*/
public void setFromDate(String fromDate) {
this.fromDate = fromDate;
}

/**
* getFromDate method.
*
* @return String
*/
public String getFromDate() {
return this.fromDate;
}

/**
* setSearchText method.
*/
Expand Down Expand Up @@ -642,6 +642,38 @@ public void setStatus(String status) {
public String getStatus() {
return this.status;
}

/**
* setToDate method.
*/
public void setToDate(String toDate) {
this.toDate = toDate;
}

/**
* getToDate method.
*
* @return String
*/
public String getToDate() {
return this.toDate;
}

/**
* setUserId method.
*/
public void setUserId(String userId) {
this.userId = userId;
}

/**
* getUserId method.
*
* @return String
*/
public String getUserId() {
return this.userId;
}
}

/**
Expand Down Expand Up @@ -684,12 +716,18 @@ public BulkSendBatchSummaries getBulkSendBatches(String accountId, BulkEnvelopes
localVarQueryParams.addAll(apiClient.parameterToPair("batch_ids", options.batchIds));
}if (options != null) {
localVarQueryParams.addAll(apiClient.parameterToPair("count", options.count));
}if (options != null) {
localVarQueryParams.addAll(apiClient.parameterToPair("from_date", options.fromDate));
}if (options != null) {
localVarQueryParams.addAll(apiClient.parameterToPair("search_text", options.searchText));
}if (options != null) {
localVarQueryParams.addAll(apiClient.parameterToPair("start_position", options.startPosition));
}if (options != null) {
localVarQueryParams.addAll(apiClient.parameterToPair("status", options.status));
}if (options != null) {
localVarQueryParams.addAll(apiClient.parameterToPair("to_date", options.toDate));
}if (options != null) {
localVarQueryParams.addAll(apiClient.parameterToPair("user_id", options.userId));
}


Expand Down
Loading

0 comments on commit 39e670d

Please sign in to comment.