Skip to content

Commit 39e670d

Browse files
RajReleroot
andauthored
Version 3.18.0-v2.1-22.1.01.00 release (#230)
Co-authored-by: root <[email protected]>
1 parent 9225533 commit 39e670d

24 files changed

+1523
-380
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# DocuSign Java Client Changelog
22
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
33

4+
## [v3.18.0] - eSignature API v2.1-22.1.01.00 - 2022-04-08
5+
### Changed
6+
- Added support for version v2.1-22.1.01.00 of the DocuSign ESignature API.
7+
- Updated the SDK release version.
8+
9+
### Breaking
10+
- Following models are renamed
11+
12+
- `ScheduledSendingApiModel` is renamed to `ScheduledSending`
13+
- `DelayedRoutingApiModel` is renamed to `DelayedRouting`
14+
415
## [v3.17.1] - eSignature API v2.1-21.4.02.00 - 2022-02-12
516
### Changed
617
- Added support for version v2.1-21.4.02.00 of the DocuSign ESignature API.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This SDK is provided as open source, which enables you to customize its function
2727
<dependency>
2828
<groupId>com.docusign</groupId>
2929
<artifactId>docusign-esign-java</artifactId>
30-
<version>3.17.0-RC1</version>
30+
<version>3.18.0</version>
3131
</dependency>
3232
```
3333
8. If your project is still open, restart Eclipse.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.docusign'
5-
version = '3.17.0-RC1'
5+
version = '3.18.0'
66

77
buildscript {
88
repositories {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>docusign-esign-java</artifactId>
55
<packaging>jar</packaging>
66
<name>docusign-esign-java</name>
7-
<version>3.17.1</version>
7+
<version>3.18.0</version>
88
<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>
99
<url>https://developers.docusign.com</url>
1010

src/main/java/com/docusign/esign/api/BulkEnvelopesApi.java

Lines changed: 57 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,6 @@ public class GetBulkSendBatchEnvelopesOptions
281281
private String searchText = null;
282282
private String startPosition = null;
283283
private String status = null;
284-
private String userId = null;
285284

286285
/**
287286
* setCount method.
@@ -394,22 +393,6 @@ public void setStatus(String status) {
394393
public String getStatus() {
395394
return this.status;
396395
}
397-
398-
/**
399-
* setUserId method.
400-
*/
401-
public void setUserId(String userId) {
402-
this.userId = userId;
403-
}
404-
405-
/**
406-
* getUserId method.
407-
*
408-
* @return String
409-
*/
410-
public String getUserId() {
411-
return this.userId;
412-
}
413396
}
414397

415398
/**
@@ -470,8 +453,6 @@ public EnvelopesInformation getBulkSendBatchEnvelopes(String accountId, String b
470453
localVarQueryParams.addAll(apiClient.parameterToPair("start_position", options.startPosition));
471454
}if (options != null) {
472455
localVarQueryParams.addAll(apiClient.parameterToPair("status", options.status));
473-
}if (options != null) {
474-
localVarQueryParams.addAll(apiClient.parameterToPair("user_id", options.userId));
475456
}
476457

477458

@@ -559,9 +540,12 @@ public class GetBulkSendBatchesOptions
559540
{
560541
private String batchIds = null;
561542
private String count = null;
543+
private String fromDate = null;
562544
private String searchText = null;
563545
private String startPosition = null;
564546
private String status = null;
547+
private String toDate = null;
548+
private String userId = null;
565549

566550
/**
567551
* setBatchIds method.
@@ -595,6 +579,22 @@ public String getCount() {
595579
return this.count;
596580
}
597581

582+
/**
583+
* setFromDate method.
584+
*/
585+
public void setFromDate(String fromDate) {
586+
this.fromDate = fromDate;
587+
}
588+
589+
/**
590+
* getFromDate method.
591+
*
592+
* @return String
593+
*/
594+
public String getFromDate() {
595+
return this.fromDate;
596+
}
597+
598598
/**
599599
* setSearchText method.
600600
*/
@@ -642,6 +642,38 @@ public void setStatus(String status) {
642642
public String getStatus() {
643643
return this.status;
644644
}
645+
646+
/**
647+
* setToDate method.
648+
*/
649+
public void setToDate(String toDate) {
650+
this.toDate = toDate;
651+
}
652+
653+
/**
654+
* getToDate method.
655+
*
656+
* @return String
657+
*/
658+
public String getToDate() {
659+
return this.toDate;
660+
}
661+
662+
/**
663+
* setUserId method.
664+
*/
665+
public void setUserId(String userId) {
666+
this.userId = userId;
667+
}
668+
669+
/**
670+
* getUserId method.
671+
*
672+
* @return String
673+
*/
674+
public String getUserId() {
675+
return this.userId;
676+
}
645677
}
646678

647679
/**
@@ -684,12 +716,18 @@ public BulkSendBatchSummaries getBulkSendBatches(String accountId, BulkEnvelopes
684716
localVarQueryParams.addAll(apiClient.parameterToPair("batch_ids", options.batchIds));
685717
}if (options != null) {
686718
localVarQueryParams.addAll(apiClient.parameterToPair("count", options.count));
719+
}if (options != null) {
720+
localVarQueryParams.addAll(apiClient.parameterToPair("from_date", options.fromDate));
687721
}if (options != null) {
688722
localVarQueryParams.addAll(apiClient.parameterToPair("search_text", options.searchText));
689723
}if (options != null) {
690724
localVarQueryParams.addAll(apiClient.parameterToPair("start_position", options.startPosition));
691725
}if (options != null) {
692726
localVarQueryParams.addAll(apiClient.parameterToPair("status", options.status));
727+
}if (options != null) {
728+
localVarQueryParams.addAll(apiClient.parameterToPair("to_date", options.toDate));
729+
}if (options != null) {
730+
localVarQueryParams.addAll(apiClient.parameterToPair("user_id", options.userId));
693731
}
694732

695733

0 commit comments

Comments
 (0)