Skip to content

Commit 3d9f0bd

Browse files
Version v3.15.0-RC1-v2.1-21.2.02.00 release (#206)
Co-authored-by: DevCenter-DocuSign <[email protected]>
1 parent ecde99d commit 3d9f0bd

34 files changed

+1109
-865
lines changed

CHANGELOG.md

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

4+
## [v3.15.0-RC1] - ESignature API v2.1-21.2.02.00 - 2021-08-30
5+
### Changed
6+
- Added support for version v2.1-21.2.02.00 of the DocuSign ESignature API.
7+
- Updated the SDK release version.
8+
### Removed
9+
- Removed Joda dependency.
10+
411
## [v3.14.0] - eSignature API v2.1-21.2.00.00 - 2021-07-22
512
### Changed
613
- Added support for version v2.1-21.2.00.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.14.0</version>
30+
<version>3.15.0-RC1</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.14.0'
5+
version = '3.15.0-RC1'
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.14.0</version>
7+
<version>3.15.0-RC1</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: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -247,22 +247,22 @@ public BulkSendingListSummaries deleteBulkSendList(String accountId, String bulk
247247
/// </summary>
248248
public class GetBulkSendBatchEnvelopesOptions
249249
{
250-
private Integer count = null;
250+
private String count = null;
251251
private String include = null;
252252
private String order = null;
253253
private String orderBy = null;
254254
private String searchText = null;
255-
private Integer startPosition = null;
255+
private String startPosition = null;
256256
private String status = null;
257-
private java.util.UUID userId = null;
257+
private String userId = null;
258258
/*
259259
*
260260
*/
261-
public void setCount(Integer count) {
261+
public void setCount(String count) {
262262
this.count = count;
263263
}
264264

265-
public Integer getCount() {
265+
public String getCount() {
266266
return this.count;
267267
}
268268
/*
@@ -308,11 +308,11 @@ public String getSearchText() {
308308
/*
309309
*
310310
*/
311-
public void setStartPosition(Integer startPosition) {
311+
public void setStartPosition(String startPosition) {
312312
this.startPosition = startPosition;
313313
}
314314

315-
public Integer getStartPosition() {
315+
public String getStartPosition() {
316316
return this.startPosition;
317317
}
318318
/*
@@ -328,11 +328,11 @@ public String getStatus() {
328328
/*
329329
*
330330
*/
331-
public void setUserId(java.util.UUID userId) {
331+
public void setUserId(String userId) {
332332
this.userId = userId;
333333
}
334334

335-
public java.util.UUID getUserId() {
335+
public String getUserId() {
336336
return this.userId;
337337
}
338338
}

0 commit comments

Comments
 (0)