diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5d2b953a..7077d646 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,12 @@
# DocuSign Java Client Changelog
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
-## [v6.5.0] - eSignature API v2.1-25.3.01.00 - 2025-09-29
+## [v6.6.0] - eSignature API v2.1-25.4.01.00 - 2026-01-27
+### Changed
+- Added support for version v2.1-25.4.01.00 of the DocuSign ESignature API.
+- Updated the SDK release version.
+
+## [v6.5.0] - eSignature API v2.1-25.3.01.00 - 2025-12-11
### Changed
- Added support for version v2.1-25.3.01.00 of the Docusign ESignature API.
- Updated the SDK release version.
diff --git a/README.md b/README.md
index 630d758a..0e8be825 100644
--- a/README.md
+++ b/README.md
@@ -57,7 +57,7 @@ This client SDK is provided as open source, which enables you to customize its f
com.docusign
docusign-esign-java
- 6.5.0
+ 6.6.0
```
8. If your project is still open, restart Eclipse.
diff --git a/pom.xml b/pom.xml
index f690f580..01d405de 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
docusign-esign-java
jar
docusign-esign-java
- 6.5.0
+ 6.6.0
https://developers.docusign.com
The official Docusign eSignature JAVA client is based on version 2.1 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.
@@ -210,13 +210,8 @@
maven-compiler-plugin
3.6.1
- 1.8
- 1.8
- true
- javac
-
- -J-Xss4m
-
+ 1.8
+ 1.8
@@ -238,8 +233,6 @@
12.1.1
8
- false
- false
@@ -298,7 +291,7 @@
org.apache.maven.plugins
maven-gpg-plugin
- 1.6
+ 1.5
sign-artifacts
diff --git a/src/main/java/com/docusign/esign/api/EnvelopesApi.java b/src/main/java/com/docusign/esign/api/EnvelopesApi.java
index 109ccb4e..7cf39d5c 100644
--- a/src/main/java/com/docusign/esign/api/EnvelopesApi.java
+++ b/src/main/java/com/docusign/esign/api/EnvelopesApi.java
@@ -5248,6 +5248,7 @@ public class GetEnvelopeOptions
private String advancedUpdate = null;
private String include = null;
private String includeAnchorTabLocations = null;
+ private String userId = null;
/**
* setAdvancedUpdate method.
@@ -5296,6 +5297,22 @@ public void setIncludeAnchorTabLocations(String includeAnchorTabLocations) {
public String getIncludeAnchorTabLocations() {
return this.includeAnchorTabLocations;
}
+
+ /**
+ * setUserId method.
+ */
+ public void setUserId(String userId) {
+ this.userId = userId;
+ }
+
+ /**
+ * getUserId method.
+ *
+ * @return String
+ */
+ public String getUserId() {
+ return this.userId;
+ }
}
/**
@@ -5362,6 +5379,8 @@ public ApiResponse getEnvelopeWithHttpInfo(String accountId, String e
localVarQueryParams.addAll(apiClient.parameterToPair("include", options.include));
}if (options != null) {
localVarQueryParams.addAll(apiClient.parameterToPair("include_anchor_tab_locations", options.includeAnchorTabLocations));
+ }if (options != null) {
+ localVarQueryParams.addAll(apiClient.parameterToPair("user_id", options.userId));
}
diff --git a/src/main/java/com/docusign/esign/client/ApiClient.java b/src/main/java/com/docusign/esign/client/ApiClient.java
index 0867361d..d010756b 100644
--- a/src/main/java/com/docusign/esign/client/ApiClient.java
+++ b/src/main/java/com/docusign/esign/client/ApiClient.java
@@ -93,7 +93,7 @@ public ApiClient() {
String javaVersion = System.getProperty("java.version");
// Set default User-Agent.
- setUserAgent("Swagger-Codegen/v2.1/6.5.0/Java/" + javaVersion);
+ setUserAgent("Swagger-Codegen/v2.1/6.6.0/Java/" + javaVersion);
// Setup authentications (key: authentication name, value: authentication).
authentications = new HashMap();
diff --git a/src/main/java/com/docusign/esign/model/AccountManagementGranular.java b/src/main/java/com/docusign/esign/model/AccountManagementGranular.java
new file mode 100644
index 00000000..fefb3a25
--- /dev/null
+++ b/src/main/java/com/docusign/esign/model/AccountManagementGranular.java
@@ -0,0 +1,934 @@
+package com.docusign.esign.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.docusign.esign.model.SettingsMetadata;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonValue;
+import io.swagger.v3.oas.annotations.media.Schema;
+import java.io.Serializable;
+
+/**
+ * AccountManagementGranular.
+ *
+ */
+
+public class AccountManagementGranular implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ @JsonProperty("allowManageAccountSecuritySettings")
+ private String allowManageAccountSecuritySettings = null;
+
+ @JsonProperty("allowManageAccountSecuritySettingsMetadata")
+ private SettingsMetadata allowManageAccountSecuritySettingsMetadata = null;
+
+ @JsonProperty("allowManageAccountSettings")
+ private String allowManageAccountSettings = null;
+
+ @JsonProperty("allowManageAccountSettingsMetadata")
+ private SettingsMetadata allowManageAccountSettingsMetadata = null;
+
+ @JsonProperty("allowManageAdmins")
+ private String allowManageAdmins = null;
+
+ @JsonProperty("allowManageAdminsMetadata")
+ private SettingsMetadata allowManageAdminsMetadata = null;
+
+ @JsonProperty("allowManageConnect")
+ private String allowManageConnect = null;
+
+ @JsonProperty("allowManageConnectMetadata")
+ private SettingsMetadata allowManageConnectMetadata = null;
+
+ @JsonProperty("allowManageDocumentRetention")
+ private String allowManageDocumentRetention = null;
+
+ @JsonProperty("allowManageDocumentRetentionMetadata")
+ private SettingsMetadata allowManageDocumentRetentionMetadata = null;
+
+ @JsonProperty("allowManageEnvelopeTransfer")
+ private String allowManageEnvelopeTransfer = null;
+
+ @JsonProperty("allowManageEnvelopeTransferMetadata")
+ private SettingsMetadata allowManageEnvelopeTransferMetadata = null;
+
+ @JsonProperty("allowManageGroupsButNotUsers")
+ private String allowManageGroupsButNotUsers = null;
+
+ @JsonProperty("allowManageGroupsButNotUsersMetadata")
+ private SettingsMetadata allowManageGroupsButNotUsersMetadata = null;
+
+ @JsonProperty("allowManageJointAgreements")
+ private String allowManageJointAgreements = null;
+
+ @JsonProperty("allowManageJointAgreementsMetadata")
+ private SettingsMetadata allowManageJointAgreementsMetadata = null;
+
+ @JsonProperty("allowManageReporting")
+ private String allowManageReporting = null;
+
+ @JsonProperty("allowManageReportingMetadata")
+ private SettingsMetadata allowManageReportingMetadata = null;
+
+ @JsonProperty("allowManageSharing")
+ private String allowManageSharing = null;
+
+ @JsonProperty("allowManageSharingMetadata")
+ private SettingsMetadata allowManageSharingMetadata = null;
+
+ @JsonProperty("allowManageSigningGroups")
+ private String allowManageSigningGroups = null;
+
+ @JsonProperty("allowManageSigningGroupsMetadata")
+ private SettingsMetadata allowManageSigningGroupsMetadata = null;
+
+ @JsonProperty("allowManageStamps")
+ private String allowManageStamps = null;
+
+ @JsonProperty("allowManageStampsMetadata")
+ private SettingsMetadata allowManageStampsMetadata = null;
+
+ @JsonProperty("allowManageUsers")
+ private String allowManageUsers = null;
+
+ @JsonProperty("allowManageUsersMetadata")
+ private SettingsMetadata allowManageUsersMetadata = null;
+
+ @JsonProperty("allowViewUsers")
+ private String allowViewUsers = null;
+
+
+ /**
+ * allowManageAccountSecuritySettings.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageAccountSecuritySettings(String allowManageAccountSecuritySettings) {
+ this.allowManageAccountSecuritySettings = allowManageAccountSecuritySettings;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageAccountSecuritySettings
+ **/
+ @Schema(description = "")
+ public String getAllowManageAccountSecuritySettings() {
+ return allowManageAccountSecuritySettings;
+ }
+
+ /**
+ * setAllowManageAccountSecuritySettings.
+ **/
+ public void setAllowManageAccountSecuritySettings(String allowManageAccountSecuritySettings) {
+ this.allowManageAccountSecuritySettings = allowManageAccountSecuritySettings;
+ }
+
+
+ /**
+ * allowManageAccountSecuritySettingsMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageAccountSecuritySettingsMetadata(SettingsMetadata allowManageAccountSecuritySettingsMetadata) {
+ this.allowManageAccountSecuritySettingsMetadata = allowManageAccountSecuritySettingsMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageAccountSecuritySettingsMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageAccountSecuritySettingsMetadata() {
+ return allowManageAccountSecuritySettingsMetadata;
+ }
+
+ /**
+ * setAllowManageAccountSecuritySettingsMetadata.
+ **/
+ public void setAllowManageAccountSecuritySettingsMetadata(SettingsMetadata allowManageAccountSecuritySettingsMetadata) {
+ this.allowManageAccountSecuritySettingsMetadata = allowManageAccountSecuritySettingsMetadata;
+ }
+
+
+ /**
+ * allowManageAccountSettings.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageAccountSettings(String allowManageAccountSettings) {
+ this.allowManageAccountSettings = allowManageAccountSettings;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageAccountSettings
+ **/
+ @Schema(description = "")
+ public String getAllowManageAccountSettings() {
+ return allowManageAccountSettings;
+ }
+
+ /**
+ * setAllowManageAccountSettings.
+ **/
+ public void setAllowManageAccountSettings(String allowManageAccountSettings) {
+ this.allowManageAccountSettings = allowManageAccountSettings;
+ }
+
+
+ /**
+ * allowManageAccountSettingsMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageAccountSettingsMetadata(SettingsMetadata allowManageAccountSettingsMetadata) {
+ this.allowManageAccountSettingsMetadata = allowManageAccountSettingsMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageAccountSettingsMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageAccountSettingsMetadata() {
+ return allowManageAccountSettingsMetadata;
+ }
+
+ /**
+ * setAllowManageAccountSettingsMetadata.
+ **/
+ public void setAllowManageAccountSettingsMetadata(SettingsMetadata allowManageAccountSettingsMetadata) {
+ this.allowManageAccountSettingsMetadata = allowManageAccountSettingsMetadata;
+ }
+
+
+ /**
+ * allowManageAdmins.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageAdmins(String allowManageAdmins) {
+ this.allowManageAdmins = allowManageAdmins;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageAdmins
+ **/
+ @Schema(description = "")
+ public String getAllowManageAdmins() {
+ return allowManageAdmins;
+ }
+
+ /**
+ * setAllowManageAdmins.
+ **/
+ public void setAllowManageAdmins(String allowManageAdmins) {
+ this.allowManageAdmins = allowManageAdmins;
+ }
+
+
+ /**
+ * allowManageAdminsMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageAdminsMetadata(SettingsMetadata allowManageAdminsMetadata) {
+ this.allowManageAdminsMetadata = allowManageAdminsMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageAdminsMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageAdminsMetadata() {
+ return allowManageAdminsMetadata;
+ }
+
+ /**
+ * setAllowManageAdminsMetadata.
+ **/
+ public void setAllowManageAdminsMetadata(SettingsMetadata allowManageAdminsMetadata) {
+ this.allowManageAdminsMetadata = allowManageAdminsMetadata;
+ }
+
+
+ /**
+ * allowManageConnect.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageConnect(String allowManageConnect) {
+ this.allowManageConnect = allowManageConnect;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageConnect
+ **/
+ @Schema(description = "")
+ public String getAllowManageConnect() {
+ return allowManageConnect;
+ }
+
+ /**
+ * setAllowManageConnect.
+ **/
+ public void setAllowManageConnect(String allowManageConnect) {
+ this.allowManageConnect = allowManageConnect;
+ }
+
+
+ /**
+ * allowManageConnectMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageConnectMetadata(SettingsMetadata allowManageConnectMetadata) {
+ this.allowManageConnectMetadata = allowManageConnectMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageConnectMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageConnectMetadata() {
+ return allowManageConnectMetadata;
+ }
+
+ /**
+ * setAllowManageConnectMetadata.
+ **/
+ public void setAllowManageConnectMetadata(SettingsMetadata allowManageConnectMetadata) {
+ this.allowManageConnectMetadata = allowManageConnectMetadata;
+ }
+
+
+ /**
+ * allowManageDocumentRetention.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageDocumentRetention(String allowManageDocumentRetention) {
+ this.allowManageDocumentRetention = allowManageDocumentRetention;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageDocumentRetention
+ **/
+ @Schema(description = "")
+ public String getAllowManageDocumentRetention() {
+ return allowManageDocumentRetention;
+ }
+
+ /**
+ * setAllowManageDocumentRetention.
+ **/
+ public void setAllowManageDocumentRetention(String allowManageDocumentRetention) {
+ this.allowManageDocumentRetention = allowManageDocumentRetention;
+ }
+
+
+ /**
+ * allowManageDocumentRetentionMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageDocumentRetentionMetadata(SettingsMetadata allowManageDocumentRetentionMetadata) {
+ this.allowManageDocumentRetentionMetadata = allowManageDocumentRetentionMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageDocumentRetentionMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageDocumentRetentionMetadata() {
+ return allowManageDocumentRetentionMetadata;
+ }
+
+ /**
+ * setAllowManageDocumentRetentionMetadata.
+ **/
+ public void setAllowManageDocumentRetentionMetadata(SettingsMetadata allowManageDocumentRetentionMetadata) {
+ this.allowManageDocumentRetentionMetadata = allowManageDocumentRetentionMetadata;
+ }
+
+
+ /**
+ * allowManageEnvelopeTransfer.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageEnvelopeTransfer(String allowManageEnvelopeTransfer) {
+ this.allowManageEnvelopeTransfer = allowManageEnvelopeTransfer;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageEnvelopeTransfer
+ **/
+ @Schema(description = "")
+ public String getAllowManageEnvelopeTransfer() {
+ return allowManageEnvelopeTransfer;
+ }
+
+ /**
+ * setAllowManageEnvelopeTransfer.
+ **/
+ public void setAllowManageEnvelopeTransfer(String allowManageEnvelopeTransfer) {
+ this.allowManageEnvelopeTransfer = allowManageEnvelopeTransfer;
+ }
+
+
+ /**
+ * allowManageEnvelopeTransferMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageEnvelopeTransferMetadata(SettingsMetadata allowManageEnvelopeTransferMetadata) {
+ this.allowManageEnvelopeTransferMetadata = allowManageEnvelopeTransferMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageEnvelopeTransferMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageEnvelopeTransferMetadata() {
+ return allowManageEnvelopeTransferMetadata;
+ }
+
+ /**
+ * setAllowManageEnvelopeTransferMetadata.
+ **/
+ public void setAllowManageEnvelopeTransferMetadata(SettingsMetadata allowManageEnvelopeTransferMetadata) {
+ this.allowManageEnvelopeTransferMetadata = allowManageEnvelopeTransferMetadata;
+ }
+
+
+ /**
+ * allowManageGroupsButNotUsers.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageGroupsButNotUsers(String allowManageGroupsButNotUsers) {
+ this.allowManageGroupsButNotUsers = allowManageGroupsButNotUsers;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageGroupsButNotUsers
+ **/
+ @Schema(description = "")
+ public String getAllowManageGroupsButNotUsers() {
+ return allowManageGroupsButNotUsers;
+ }
+
+ /**
+ * setAllowManageGroupsButNotUsers.
+ **/
+ public void setAllowManageGroupsButNotUsers(String allowManageGroupsButNotUsers) {
+ this.allowManageGroupsButNotUsers = allowManageGroupsButNotUsers;
+ }
+
+
+ /**
+ * allowManageGroupsButNotUsersMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageGroupsButNotUsersMetadata(SettingsMetadata allowManageGroupsButNotUsersMetadata) {
+ this.allowManageGroupsButNotUsersMetadata = allowManageGroupsButNotUsersMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageGroupsButNotUsersMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageGroupsButNotUsersMetadata() {
+ return allowManageGroupsButNotUsersMetadata;
+ }
+
+ /**
+ * setAllowManageGroupsButNotUsersMetadata.
+ **/
+ public void setAllowManageGroupsButNotUsersMetadata(SettingsMetadata allowManageGroupsButNotUsersMetadata) {
+ this.allowManageGroupsButNotUsersMetadata = allowManageGroupsButNotUsersMetadata;
+ }
+
+
+ /**
+ * allowManageJointAgreements.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageJointAgreements(String allowManageJointAgreements) {
+ this.allowManageJointAgreements = allowManageJointAgreements;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageJointAgreements
+ **/
+ @Schema(description = "")
+ public String getAllowManageJointAgreements() {
+ return allowManageJointAgreements;
+ }
+
+ /**
+ * setAllowManageJointAgreements.
+ **/
+ public void setAllowManageJointAgreements(String allowManageJointAgreements) {
+ this.allowManageJointAgreements = allowManageJointAgreements;
+ }
+
+
+ /**
+ * allowManageJointAgreementsMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageJointAgreementsMetadata(SettingsMetadata allowManageJointAgreementsMetadata) {
+ this.allowManageJointAgreementsMetadata = allowManageJointAgreementsMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageJointAgreementsMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageJointAgreementsMetadata() {
+ return allowManageJointAgreementsMetadata;
+ }
+
+ /**
+ * setAllowManageJointAgreementsMetadata.
+ **/
+ public void setAllowManageJointAgreementsMetadata(SettingsMetadata allowManageJointAgreementsMetadata) {
+ this.allowManageJointAgreementsMetadata = allowManageJointAgreementsMetadata;
+ }
+
+
+ /**
+ * allowManageReporting.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageReporting(String allowManageReporting) {
+ this.allowManageReporting = allowManageReporting;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageReporting
+ **/
+ @Schema(description = "")
+ public String getAllowManageReporting() {
+ return allowManageReporting;
+ }
+
+ /**
+ * setAllowManageReporting.
+ **/
+ public void setAllowManageReporting(String allowManageReporting) {
+ this.allowManageReporting = allowManageReporting;
+ }
+
+
+ /**
+ * allowManageReportingMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageReportingMetadata(SettingsMetadata allowManageReportingMetadata) {
+ this.allowManageReportingMetadata = allowManageReportingMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageReportingMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageReportingMetadata() {
+ return allowManageReportingMetadata;
+ }
+
+ /**
+ * setAllowManageReportingMetadata.
+ **/
+ public void setAllowManageReportingMetadata(SettingsMetadata allowManageReportingMetadata) {
+ this.allowManageReportingMetadata = allowManageReportingMetadata;
+ }
+
+
+ /**
+ * allowManageSharing.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageSharing(String allowManageSharing) {
+ this.allowManageSharing = allowManageSharing;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageSharing
+ **/
+ @Schema(description = "")
+ public String getAllowManageSharing() {
+ return allowManageSharing;
+ }
+
+ /**
+ * setAllowManageSharing.
+ **/
+ public void setAllowManageSharing(String allowManageSharing) {
+ this.allowManageSharing = allowManageSharing;
+ }
+
+
+ /**
+ * allowManageSharingMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageSharingMetadata(SettingsMetadata allowManageSharingMetadata) {
+ this.allowManageSharingMetadata = allowManageSharingMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageSharingMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageSharingMetadata() {
+ return allowManageSharingMetadata;
+ }
+
+ /**
+ * setAllowManageSharingMetadata.
+ **/
+ public void setAllowManageSharingMetadata(SettingsMetadata allowManageSharingMetadata) {
+ this.allowManageSharingMetadata = allowManageSharingMetadata;
+ }
+
+
+ /**
+ * allowManageSigningGroups.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageSigningGroups(String allowManageSigningGroups) {
+ this.allowManageSigningGroups = allowManageSigningGroups;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageSigningGroups
+ **/
+ @Schema(description = "")
+ public String getAllowManageSigningGroups() {
+ return allowManageSigningGroups;
+ }
+
+ /**
+ * setAllowManageSigningGroups.
+ **/
+ public void setAllowManageSigningGroups(String allowManageSigningGroups) {
+ this.allowManageSigningGroups = allowManageSigningGroups;
+ }
+
+
+ /**
+ * allowManageSigningGroupsMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageSigningGroupsMetadata(SettingsMetadata allowManageSigningGroupsMetadata) {
+ this.allowManageSigningGroupsMetadata = allowManageSigningGroupsMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageSigningGroupsMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageSigningGroupsMetadata() {
+ return allowManageSigningGroupsMetadata;
+ }
+
+ /**
+ * setAllowManageSigningGroupsMetadata.
+ **/
+ public void setAllowManageSigningGroupsMetadata(SettingsMetadata allowManageSigningGroupsMetadata) {
+ this.allowManageSigningGroupsMetadata = allowManageSigningGroupsMetadata;
+ }
+
+
+ /**
+ * allowManageStamps.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageStamps(String allowManageStamps) {
+ this.allowManageStamps = allowManageStamps;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageStamps
+ **/
+ @Schema(description = "")
+ public String getAllowManageStamps() {
+ return allowManageStamps;
+ }
+
+ /**
+ * setAllowManageStamps.
+ **/
+ public void setAllowManageStamps(String allowManageStamps) {
+ this.allowManageStamps = allowManageStamps;
+ }
+
+
+ /**
+ * allowManageStampsMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageStampsMetadata(SettingsMetadata allowManageStampsMetadata) {
+ this.allowManageStampsMetadata = allowManageStampsMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageStampsMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageStampsMetadata() {
+ return allowManageStampsMetadata;
+ }
+
+ /**
+ * setAllowManageStampsMetadata.
+ **/
+ public void setAllowManageStampsMetadata(SettingsMetadata allowManageStampsMetadata) {
+ this.allowManageStampsMetadata = allowManageStampsMetadata;
+ }
+
+
+ /**
+ * allowManageUsers.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageUsers(String allowManageUsers) {
+ this.allowManageUsers = allowManageUsers;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageUsers
+ **/
+ @Schema(description = "")
+ public String getAllowManageUsers() {
+ return allowManageUsers;
+ }
+
+ /**
+ * setAllowManageUsers.
+ **/
+ public void setAllowManageUsers(String allowManageUsers) {
+ this.allowManageUsers = allowManageUsers;
+ }
+
+
+ /**
+ * allowManageUsersMetadata.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowManageUsersMetadata(SettingsMetadata allowManageUsersMetadata) {
+ this.allowManageUsersMetadata = allowManageUsersMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowManageUsersMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowManageUsersMetadata() {
+ return allowManageUsersMetadata;
+ }
+
+ /**
+ * setAllowManageUsersMetadata.
+ **/
+ public void setAllowManageUsersMetadata(SettingsMetadata allowManageUsersMetadata) {
+ this.allowManageUsersMetadata = allowManageUsersMetadata;
+ }
+
+
+ /**
+ * allowViewUsers.
+ *
+ * @return AccountManagementGranular
+ **/
+ public AccountManagementGranular allowViewUsers(String allowViewUsers) {
+ this.allowViewUsers = allowViewUsers;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowViewUsers
+ **/
+ @Schema(description = "")
+ public String getAllowViewUsers() {
+ return allowViewUsers;
+ }
+
+ /**
+ * setAllowViewUsers.
+ **/
+ public void setAllowViewUsers(String allowViewUsers) {
+ this.allowViewUsers = allowViewUsers;
+ }
+
+
+ /**
+ * Compares objects.
+ *
+ * @return true or false depending on comparison result.
+ */
+ @Override
+ public boolean equals(java.lang.Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ AccountManagementGranular accountManagementGranular = (AccountManagementGranular) o;
+ return Objects.equals(this.allowManageAccountSecuritySettings, accountManagementGranular.allowManageAccountSecuritySettings) &&
+ Objects.equals(this.allowManageAccountSecuritySettingsMetadata, accountManagementGranular.allowManageAccountSecuritySettingsMetadata) &&
+ Objects.equals(this.allowManageAccountSettings, accountManagementGranular.allowManageAccountSettings) &&
+ Objects.equals(this.allowManageAccountSettingsMetadata, accountManagementGranular.allowManageAccountSettingsMetadata) &&
+ Objects.equals(this.allowManageAdmins, accountManagementGranular.allowManageAdmins) &&
+ Objects.equals(this.allowManageAdminsMetadata, accountManagementGranular.allowManageAdminsMetadata) &&
+ Objects.equals(this.allowManageConnect, accountManagementGranular.allowManageConnect) &&
+ Objects.equals(this.allowManageConnectMetadata, accountManagementGranular.allowManageConnectMetadata) &&
+ Objects.equals(this.allowManageDocumentRetention, accountManagementGranular.allowManageDocumentRetention) &&
+ Objects.equals(this.allowManageDocumentRetentionMetadata, accountManagementGranular.allowManageDocumentRetentionMetadata) &&
+ Objects.equals(this.allowManageEnvelopeTransfer, accountManagementGranular.allowManageEnvelopeTransfer) &&
+ Objects.equals(this.allowManageEnvelopeTransferMetadata, accountManagementGranular.allowManageEnvelopeTransferMetadata) &&
+ Objects.equals(this.allowManageGroupsButNotUsers, accountManagementGranular.allowManageGroupsButNotUsers) &&
+ Objects.equals(this.allowManageGroupsButNotUsersMetadata, accountManagementGranular.allowManageGroupsButNotUsersMetadata) &&
+ Objects.equals(this.allowManageJointAgreements, accountManagementGranular.allowManageJointAgreements) &&
+ Objects.equals(this.allowManageJointAgreementsMetadata, accountManagementGranular.allowManageJointAgreementsMetadata) &&
+ Objects.equals(this.allowManageReporting, accountManagementGranular.allowManageReporting) &&
+ Objects.equals(this.allowManageReportingMetadata, accountManagementGranular.allowManageReportingMetadata) &&
+ Objects.equals(this.allowManageSharing, accountManagementGranular.allowManageSharing) &&
+ Objects.equals(this.allowManageSharingMetadata, accountManagementGranular.allowManageSharingMetadata) &&
+ Objects.equals(this.allowManageSigningGroups, accountManagementGranular.allowManageSigningGroups) &&
+ Objects.equals(this.allowManageSigningGroupsMetadata, accountManagementGranular.allowManageSigningGroupsMetadata) &&
+ Objects.equals(this.allowManageStamps, accountManagementGranular.allowManageStamps) &&
+ Objects.equals(this.allowManageStampsMetadata, accountManagementGranular.allowManageStampsMetadata) &&
+ Objects.equals(this.allowManageUsers, accountManagementGranular.allowManageUsers) &&
+ Objects.equals(this.allowManageUsersMetadata, accountManagementGranular.allowManageUsersMetadata) &&
+ Objects.equals(this.allowViewUsers, accountManagementGranular.allowViewUsers);
+ }
+
+ /**
+ * Returns the HashCode.
+ */
+ @Override
+ public int hashCode() {
+ return Objects.hash(allowManageAccountSecuritySettings, allowManageAccountSecuritySettingsMetadata, allowManageAccountSettings, allowManageAccountSettingsMetadata, allowManageAdmins, allowManageAdminsMetadata, allowManageConnect, allowManageConnectMetadata, allowManageDocumentRetention, allowManageDocumentRetentionMetadata, allowManageEnvelopeTransfer, allowManageEnvelopeTransferMetadata, allowManageGroupsButNotUsers, allowManageGroupsButNotUsersMetadata, allowManageJointAgreements, allowManageJointAgreementsMetadata, allowManageReporting, allowManageReportingMetadata, allowManageSharing, allowManageSharingMetadata, allowManageSigningGroups, allowManageSigningGroupsMetadata, allowManageStamps, allowManageStampsMetadata, allowManageUsers, allowManageUsersMetadata, allowViewUsers);
+ }
+
+
+ /**
+ * Converts the given object to string.
+ */
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class AccountManagementGranular {\n");
+
+ sb.append(" allowManageAccountSecuritySettings: ").append(toIndentedString(allowManageAccountSecuritySettings)).append("\n");
+ sb.append(" allowManageAccountSecuritySettingsMetadata: ").append(toIndentedString(allowManageAccountSecuritySettingsMetadata)).append("\n");
+ sb.append(" allowManageAccountSettings: ").append(toIndentedString(allowManageAccountSettings)).append("\n");
+ sb.append(" allowManageAccountSettingsMetadata: ").append(toIndentedString(allowManageAccountSettingsMetadata)).append("\n");
+ sb.append(" allowManageAdmins: ").append(toIndentedString(allowManageAdmins)).append("\n");
+ sb.append(" allowManageAdminsMetadata: ").append(toIndentedString(allowManageAdminsMetadata)).append("\n");
+ sb.append(" allowManageConnect: ").append(toIndentedString(allowManageConnect)).append("\n");
+ sb.append(" allowManageConnectMetadata: ").append(toIndentedString(allowManageConnectMetadata)).append("\n");
+ sb.append(" allowManageDocumentRetention: ").append(toIndentedString(allowManageDocumentRetention)).append("\n");
+ sb.append(" allowManageDocumentRetentionMetadata: ").append(toIndentedString(allowManageDocumentRetentionMetadata)).append("\n");
+ sb.append(" allowManageEnvelopeTransfer: ").append(toIndentedString(allowManageEnvelopeTransfer)).append("\n");
+ sb.append(" allowManageEnvelopeTransferMetadata: ").append(toIndentedString(allowManageEnvelopeTransferMetadata)).append("\n");
+ sb.append(" allowManageGroupsButNotUsers: ").append(toIndentedString(allowManageGroupsButNotUsers)).append("\n");
+ sb.append(" allowManageGroupsButNotUsersMetadata: ").append(toIndentedString(allowManageGroupsButNotUsersMetadata)).append("\n");
+ sb.append(" allowManageJointAgreements: ").append(toIndentedString(allowManageJointAgreements)).append("\n");
+ sb.append(" allowManageJointAgreementsMetadata: ").append(toIndentedString(allowManageJointAgreementsMetadata)).append("\n");
+ sb.append(" allowManageReporting: ").append(toIndentedString(allowManageReporting)).append("\n");
+ sb.append(" allowManageReportingMetadata: ").append(toIndentedString(allowManageReportingMetadata)).append("\n");
+ sb.append(" allowManageSharing: ").append(toIndentedString(allowManageSharing)).append("\n");
+ sb.append(" allowManageSharingMetadata: ").append(toIndentedString(allowManageSharingMetadata)).append("\n");
+ sb.append(" allowManageSigningGroups: ").append(toIndentedString(allowManageSigningGroups)).append("\n");
+ sb.append(" allowManageSigningGroupsMetadata: ").append(toIndentedString(allowManageSigningGroupsMetadata)).append("\n");
+ sb.append(" allowManageStamps: ").append(toIndentedString(allowManageStamps)).append("\n");
+ sb.append(" allowManageStampsMetadata: ").append(toIndentedString(allowManageStampsMetadata)).append("\n");
+ sb.append(" allowManageUsers: ").append(toIndentedString(allowManageUsers)).append("\n");
+ sb.append(" allowManageUsersMetadata: ").append(toIndentedString(allowManageUsersMetadata)).append("\n");
+ sb.append(" allowViewUsers: ").append(toIndentedString(allowViewUsers)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces
+ * (except the first line).
+ */
+ private String toIndentedString(java.lang.Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+}
+
diff --git a/src/main/java/com/docusign/esign/model/AccountRoleSettings.java b/src/main/java/com/docusign/esign/model/AccountRoleSettings.java
index 452e35be..e5b1d572 100644
--- a/src/main/java/com/docusign/esign/model/AccountRoleSettings.java
+++ b/src/main/java/com/docusign/esign/model/AccountRoleSettings.java
@@ -2,6 +2,7 @@
import java.util.Objects;
import java.util.Arrays;
+import com.docusign.esign.model.AccountManagementGranular;
import com.docusign.esign.model.SettingsMetadata;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
@@ -18,6 +19,15 @@
public class AccountRoleSettings implements Serializable {
private static final long serialVersionUID = 1L;
+ @JsonProperty("accountAgreementsAccessType")
+ private String accountAgreementsAccessType = null;
+
+ @JsonProperty("accountAgreementsAccessTypeMetadata")
+ private SettingsMetadata accountAgreementsAccessTypeMetadata = null;
+
+ @JsonProperty("accountManagementGranular")
+ private AccountManagementGranular accountManagementGranular = null;
+
@JsonProperty("allowAccountManagement")
private String allowAccountManagement = null;
@@ -162,6 +172,12 @@ public class AccountRoleSettings implements Serializable {
@JsonProperty("allowWetSigningOverrideMetadata")
private SettingsMetadata allowWetSigningOverrideMetadata = null;
+ @JsonProperty("canBulkUploadAgreements")
+ private String canBulkUploadAgreements = null;
+
+ @JsonProperty("canBulkUploadAgreementsMetadata")
+ private SettingsMetadata canBulkUploadAgreementsMetadata = null;
+
@JsonProperty("canCreateTransaction")
private String canCreateTransaction = null;
@@ -186,6 +202,18 @@ public class AccountRoleSettings implements Serializable {
@JsonProperty("canDeleteTransactionMetadata")
private SettingsMetadata canDeleteTransactionMetadata = null;
+ @JsonProperty("canManageAgreementDeskRequest")
+ private String canManageAgreementDeskRequest = null;
+
+ @JsonProperty("canManageAgreementDeskRequestMetadata")
+ private SettingsMetadata canManageAgreementDeskRequestMetadata = null;
+
+ @JsonProperty("canManageAgreementDeskRequestSetting")
+ private String canManageAgreementDeskRequestSetting = null;
+
+ @JsonProperty("canManageAgreementDeskRequestSettingMetadata")
+ private SettingsMetadata canManageAgreementDeskRequestSettingMetadata = null;
+
@JsonProperty("canSendEnvelopesViaSMS")
private String canSendEnvelopesViaSMS = null;
@@ -234,6 +262,12 @@ public class AccountRoleSettings implements Serializable {
@JsonProperty("enableTransactionPointIntegrationMetadata")
private SettingsMetadata enableTransactionPointIntegrationMetadata = null;
+ @JsonProperty("playbookAccess")
+ private String playbookAccess = null;
+
+ @JsonProperty("playbookAccessMetadata")
+ private SettingsMetadata playbookAccessMetadata = null;
+
@JsonProperty("powerFormRole")
private String powerFormRole = null;
@@ -292,6 +326,87 @@ public class AccountRoleSettings implements Serializable {
private SettingsMetadata webFormsMetadata = null;
+ /**
+ * accountAgreementsAccessType.
+ *
+ * @return AccountRoleSettings
+ **/
+ public AccountRoleSettings accountAgreementsAccessType(String accountAgreementsAccessType) {
+ this.accountAgreementsAccessType = accountAgreementsAccessType;
+ return this;
+ }
+
+ /**
+ * .
+ * @return accountAgreementsAccessType
+ **/
+ @Schema(description = "")
+ public String getAccountAgreementsAccessType() {
+ return accountAgreementsAccessType;
+ }
+
+ /**
+ * setAccountAgreementsAccessType.
+ **/
+ public void setAccountAgreementsAccessType(String accountAgreementsAccessType) {
+ this.accountAgreementsAccessType = accountAgreementsAccessType;
+ }
+
+
+ /**
+ * accountAgreementsAccessTypeMetadata.
+ *
+ * @return AccountRoleSettings
+ **/
+ public AccountRoleSettings accountAgreementsAccessTypeMetadata(SettingsMetadata accountAgreementsAccessTypeMetadata) {
+ this.accountAgreementsAccessTypeMetadata = accountAgreementsAccessTypeMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return accountAgreementsAccessTypeMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAccountAgreementsAccessTypeMetadata() {
+ return accountAgreementsAccessTypeMetadata;
+ }
+
+ /**
+ * setAccountAgreementsAccessTypeMetadata.
+ **/
+ public void setAccountAgreementsAccessTypeMetadata(SettingsMetadata accountAgreementsAccessTypeMetadata) {
+ this.accountAgreementsAccessTypeMetadata = accountAgreementsAccessTypeMetadata;
+ }
+
+
+ /**
+ * accountManagementGranular.
+ *
+ * @return AccountRoleSettings
+ **/
+ public AccountRoleSettings accountManagementGranular(AccountManagementGranular accountManagementGranular) {
+ this.accountManagementGranular = accountManagementGranular;
+ return this;
+ }
+
+ /**
+ * .
+ * @return accountManagementGranular
+ **/
+ @Schema(description = "")
+ public AccountManagementGranular getAccountManagementGranular() {
+ return accountManagementGranular;
+ }
+
+ /**
+ * setAccountManagementGranular.
+ **/
+ public void setAccountManagementGranular(AccountManagementGranular accountManagementGranular) {
+ this.accountManagementGranular = accountManagementGranular;
+ }
+
+
/**
* allowAccountManagement.
*
@@ -1588,6 +1703,60 @@ public void setAllowWetSigningOverrideMetadata(SettingsMetadata allowWetSigningO
}
+ /**
+ * canBulkUploadAgreements.
+ *
+ * @return AccountRoleSettings
+ **/
+ public AccountRoleSettings canBulkUploadAgreements(String canBulkUploadAgreements) {
+ this.canBulkUploadAgreements = canBulkUploadAgreements;
+ return this;
+ }
+
+ /**
+ * .
+ * @return canBulkUploadAgreements
+ **/
+ @Schema(description = "")
+ public String getCanBulkUploadAgreements() {
+ return canBulkUploadAgreements;
+ }
+
+ /**
+ * setCanBulkUploadAgreements.
+ **/
+ public void setCanBulkUploadAgreements(String canBulkUploadAgreements) {
+ this.canBulkUploadAgreements = canBulkUploadAgreements;
+ }
+
+
+ /**
+ * canBulkUploadAgreementsMetadata.
+ *
+ * @return AccountRoleSettings
+ **/
+ public AccountRoleSettings canBulkUploadAgreementsMetadata(SettingsMetadata canBulkUploadAgreementsMetadata) {
+ this.canBulkUploadAgreementsMetadata = canBulkUploadAgreementsMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return canBulkUploadAgreementsMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getCanBulkUploadAgreementsMetadata() {
+ return canBulkUploadAgreementsMetadata;
+ }
+
+ /**
+ * setCanBulkUploadAgreementsMetadata.
+ **/
+ public void setCanBulkUploadAgreementsMetadata(SettingsMetadata canBulkUploadAgreementsMetadata) {
+ this.canBulkUploadAgreementsMetadata = canBulkUploadAgreementsMetadata;
+ }
+
+
/**
* canCreateTransaction.
*
@@ -1804,6 +1973,114 @@ public void setCanDeleteTransactionMetadata(SettingsMetadata canDeleteTransactio
}
+ /**
+ * canManageAgreementDeskRequest.
+ *
+ * @return AccountRoleSettings
+ **/
+ public AccountRoleSettings canManageAgreementDeskRequest(String canManageAgreementDeskRequest) {
+ this.canManageAgreementDeskRequest = canManageAgreementDeskRequest;
+ return this;
+ }
+
+ /**
+ * .
+ * @return canManageAgreementDeskRequest
+ **/
+ @Schema(description = "")
+ public String getCanManageAgreementDeskRequest() {
+ return canManageAgreementDeskRequest;
+ }
+
+ /**
+ * setCanManageAgreementDeskRequest.
+ **/
+ public void setCanManageAgreementDeskRequest(String canManageAgreementDeskRequest) {
+ this.canManageAgreementDeskRequest = canManageAgreementDeskRequest;
+ }
+
+
+ /**
+ * canManageAgreementDeskRequestMetadata.
+ *
+ * @return AccountRoleSettings
+ **/
+ public AccountRoleSettings canManageAgreementDeskRequestMetadata(SettingsMetadata canManageAgreementDeskRequestMetadata) {
+ this.canManageAgreementDeskRequestMetadata = canManageAgreementDeskRequestMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return canManageAgreementDeskRequestMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getCanManageAgreementDeskRequestMetadata() {
+ return canManageAgreementDeskRequestMetadata;
+ }
+
+ /**
+ * setCanManageAgreementDeskRequestMetadata.
+ **/
+ public void setCanManageAgreementDeskRequestMetadata(SettingsMetadata canManageAgreementDeskRequestMetadata) {
+ this.canManageAgreementDeskRequestMetadata = canManageAgreementDeskRequestMetadata;
+ }
+
+
+ /**
+ * canManageAgreementDeskRequestSetting.
+ *
+ * @return AccountRoleSettings
+ **/
+ public AccountRoleSettings canManageAgreementDeskRequestSetting(String canManageAgreementDeskRequestSetting) {
+ this.canManageAgreementDeskRequestSetting = canManageAgreementDeskRequestSetting;
+ return this;
+ }
+
+ /**
+ * .
+ * @return canManageAgreementDeskRequestSetting
+ **/
+ @Schema(description = "")
+ public String getCanManageAgreementDeskRequestSetting() {
+ return canManageAgreementDeskRequestSetting;
+ }
+
+ /**
+ * setCanManageAgreementDeskRequestSetting.
+ **/
+ public void setCanManageAgreementDeskRequestSetting(String canManageAgreementDeskRequestSetting) {
+ this.canManageAgreementDeskRequestSetting = canManageAgreementDeskRequestSetting;
+ }
+
+
+ /**
+ * canManageAgreementDeskRequestSettingMetadata.
+ *
+ * @return AccountRoleSettings
+ **/
+ public AccountRoleSettings canManageAgreementDeskRequestSettingMetadata(SettingsMetadata canManageAgreementDeskRequestSettingMetadata) {
+ this.canManageAgreementDeskRequestSettingMetadata = canManageAgreementDeskRequestSettingMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return canManageAgreementDeskRequestSettingMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getCanManageAgreementDeskRequestSettingMetadata() {
+ return canManageAgreementDeskRequestSettingMetadata;
+ }
+
+ /**
+ * setCanManageAgreementDeskRequestSettingMetadata.
+ **/
+ public void setCanManageAgreementDeskRequestSettingMetadata(SettingsMetadata canManageAgreementDeskRequestSettingMetadata) {
+ this.canManageAgreementDeskRequestSettingMetadata = canManageAgreementDeskRequestSettingMetadata;
+ }
+
+
/**
* canSendEnvelopesViaSMS.
*
@@ -2236,6 +2513,60 @@ public void setEnableTransactionPointIntegrationMetadata(SettingsMetadata enable
}
+ /**
+ * playbookAccess.
+ *
+ * @return AccountRoleSettings
+ **/
+ public AccountRoleSettings playbookAccess(String playbookAccess) {
+ this.playbookAccess = playbookAccess;
+ return this;
+ }
+
+ /**
+ * .
+ * @return playbookAccess
+ **/
+ @Schema(description = "")
+ public String getPlaybookAccess() {
+ return playbookAccess;
+ }
+
+ /**
+ * setPlaybookAccess.
+ **/
+ public void setPlaybookAccess(String playbookAccess) {
+ this.playbookAccess = playbookAccess;
+ }
+
+
+ /**
+ * playbookAccessMetadata.
+ *
+ * @return AccountRoleSettings
+ **/
+ public AccountRoleSettings playbookAccessMetadata(SettingsMetadata playbookAccessMetadata) {
+ this.playbookAccessMetadata = playbookAccessMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return playbookAccessMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getPlaybookAccessMetadata() {
+ return playbookAccessMetadata;
+ }
+
+ /**
+ * setPlaybookAccessMetadata.
+ **/
+ public void setPlaybookAccessMetadata(SettingsMetadata playbookAccessMetadata) {
+ this.playbookAccessMetadata = playbookAccessMetadata;
+ }
+
+
/**
* powerFormRole.
*
@@ -2763,7 +3094,10 @@ public boolean equals(java.lang.Object o) {
return false;
}
AccountRoleSettings accountRoleSettings = (AccountRoleSettings) o;
- return Objects.equals(this.allowAccountManagement, accountRoleSettings.allowAccountManagement) &&
+ return Objects.equals(this.accountAgreementsAccessType, accountRoleSettings.accountAgreementsAccessType) &&
+ Objects.equals(this.accountAgreementsAccessTypeMetadata, accountRoleSettings.accountAgreementsAccessTypeMetadata) &&
+ Objects.equals(this.accountManagementGranular, accountRoleSettings.accountManagementGranular) &&
+ Objects.equals(this.allowAccountManagement, accountRoleSettings.allowAccountManagement) &&
Objects.equals(this.allowAccountManagementMetadata, accountRoleSettings.allowAccountManagementMetadata) &&
Objects.equals(this.allowApiAccess, accountRoleSettings.allowApiAccess) &&
Objects.equals(this.allowApiAccessMetadata, accountRoleSettings.allowApiAccessMetadata) &&
@@ -2811,6 +3145,8 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.allowVaultingMetadata, accountRoleSettings.allowVaultingMetadata) &&
Objects.equals(this.allowWetSigningOverride, accountRoleSettings.allowWetSigningOverride) &&
Objects.equals(this.allowWetSigningOverrideMetadata, accountRoleSettings.allowWetSigningOverrideMetadata) &&
+ Objects.equals(this.canBulkUploadAgreements, accountRoleSettings.canBulkUploadAgreements) &&
+ Objects.equals(this.canBulkUploadAgreementsMetadata, accountRoleSettings.canBulkUploadAgreementsMetadata) &&
Objects.equals(this.canCreateTransaction, accountRoleSettings.canCreateTransaction) &&
Objects.equals(this.canCreateTransactionMetadata, accountRoleSettings.canCreateTransactionMetadata) &&
Objects.equals(this.canCreateWorkspaces, accountRoleSettings.canCreateWorkspaces) &&
@@ -2819,6 +3155,10 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.canDeleteDocumentsInTransactionMetadata, accountRoleSettings.canDeleteDocumentsInTransactionMetadata) &&
Objects.equals(this.canDeleteTransaction, accountRoleSettings.canDeleteTransaction) &&
Objects.equals(this.canDeleteTransactionMetadata, accountRoleSettings.canDeleteTransactionMetadata) &&
+ Objects.equals(this.canManageAgreementDeskRequest, accountRoleSettings.canManageAgreementDeskRequest) &&
+ Objects.equals(this.canManageAgreementDeskRequestMetadata, accountRoleSettings.canManageAgreementDeskRequestMetadata) &&
+ Objects.equals(this.canManageAgreementDeskRequestSetting, accountRoleSettings.canManageAgreementDeskRequestSetting) &&
+ Objects.equals(this.canManageAgreementDeskRequestSettingMetadata, accountRoleSettings.canManageAgreementDeskRequestSettingMetadata) &&
Objects.equals(this.canSendEnvelopesViaSMS, accountRoleSettings.canSendEnvelopesViaSMS) &&
Objects.equals(this.canSendEnvelopesViaSMSMetadata, accountRoleSettings.canSendEnvelopesViaSMSMetadata) &&
Objects.equals(this.disableDocumentUpload, accountRoleSettings.disableDocumentUpload) &&
@@ -2835,6 +3175,8 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.enableSequentialSigningInterfaceMetadata, accountRoleSettings.enableSequentialSigningInterfaceMetadata) &&
Objects.equals(this.enableTransactionPointIntegration, accountRoleSettings.enableTransactionPointIntegration) &&
Objects.equals(this.enableTransactionPointIntegrationMetadata, accountRoleSettings.enableTransactionPointIntegrationMetadata) &&
+ Objects.equals(this.playbookAccess, accountRoleSettings.playbookAccess) &&
+ Objects.equals(this.playbookAccessMetadata, accountRoleSettings.playbookAccessMetadata) &&
Objects.equals(this.powerFormRole, accountRoleSettings.powerFormRole) &&
Objects.equals(this.powerFormRoleMetadata, accountRoleSettings.powerFormRoleMetadata) &&
Objects.equals(this.receiveCompletedSelfSignedDocumentsAsEmailLinks, accountRoleSettings.receiveCompletedSelfSignedDocumentsAsEmailLinks) &&
@@ -2861,7 +3203,7 @@ public boolean equals(java.lang.Object o) {
*/
@Override
public int hashCode() {
- return Objects.hash(allowAccountManagement, allowAccountManagementMetadata, allowApiAccess, allowApiAccessMetadata, allowApiAccessToAccount, allowApiAccessToAccountMetadata, allowApiSendingOnBehalfOfOthers, allowApiSendingOnBehalfOfOthersMetadata, allowApiSequentialSigning, allowApiSequentialSigningMetadata, allowAutoTagging, allowAutoTaggingMetadata, allowBulkSending, allowBulkSendingMetadata, allowDocuSignDesktopClient, allowDocuSignDesktopClientMetadata, allowedAddressBookAccess, allowedAddressBookAccessMetadata, allowedClickwrapsAccess, allowedClickwrapsAccessMetadata, allowedDocumentTemplateLibraryAccess, allowedDocumentTemplateLibraryAccessMetadata, allowedOrchestrationAccess, allowedOrchestrationAccessMetadata, allowedTemplateAccess, allowedTemplateAccessMetadata, allowedToBeEnvelopeTransferRecipient, allowedToBeEnvelopeTransferRecipientMetadata, allowEnvelopeSending, allowEnvelopeSendingMetadata, allowESealRecipients, allowESealRecipientsMetadata, allowPowerFormsAdminToAccessAllPowerFormEnvelopes, allowPowerFormsAdminToAccessAllPowerFormEnvelopesMetadata, allowSendersToSetRecipientEmailLanguage, allowSendersToSetRecipientEmailLanguageMetadata, allowSignerAttachments, allowSignerAttachmentsMetadata, allowSupplementalDocuments, allowSupplementalDocumentsMetadata, allowTaggingInSendAndCorrect, allowTaggingInSendAndCorrectMetadata, allowTransactions, allowTransactionsMetadata, allowVaulting, allowVaultingMetadata, allowWetSigningOverride, allowWetSigningOverrideMetadata, canCreateTransaction, canCreateTransactionMetadata, canCreateWorkspaces, canCreateWorkspacesMetadata, canDeleteDocumentsInTransaction, canDeleteDocumentsInTransactionMetadata, canDeleteTransaction, canDeleteTransactionMetadata, canSendEnvelopesViaSMS, canSendEnvelopesViaSMSMetadata, disableDocumentUpload, disableDocumentUploadMetadata, disableOtherActions, disableOtherActionsMetadata, enableApiRequestLogging, enableApiRequestLoggingMetadata, enableKeyTermsSuggestionsByDocumentType, enableKeyTermsSuggestionsByDocumentTypeMetadata, enableRecipientViewingNotifications, enableRecipientViewingNotificationsMetadata, enableSequentialSigningInterface, enableSequentialSigningInterfaceMetadata, enableTransactionPointIntegration, enableTransactionPointIntegrationMetadata, powerFormRole, powerFormRoleMetadata, receiveCompletedSelfSignedDocumentsAsEmailLinks, receiveCompletedSelfSignedDocumentsAsEmailLinksMetadata, signingUiVersionMetadata, supplementalDocumentsMustAccept, supplementalDocumentsMustAcceptMetadata, supplementalDocumentsMustRead, supplementalDocumentsMustReadMetadata, supplementalDocumentsMustView, supplementalDocumentsMustViewMetadata, useNewDocuSignExperienceInterface, useNewDocuSignExperienceInterfaceMetadata, useNewSendingInterface, useNewSendingInterfaceMetadata, vaultingMode, vaultingModeMetadata, webForms, webFormsMetadata);
+ return Objects.hash(accountAgreementsAccessType, accountAgreementsAccessTypeMetadata, accountManagementGranular, allowAccountManagement, allowAccountManagementMetadata, allowApiAccess, allowApiAccessMetadata, allowApiAccessToAccount, allowApiAccessToAccountMetadata, allowApiSendingOnBehalfOfOthers, allowApiSendingOnBehalfOfOthersMetadata, allowApiSequentialSigning, allowApiSequentialSigningMetadata, allowAutoTagging, allowAutoTaggingMetadata, allowBulkSending, allowBulkSendingMetadata, allowDocuSignDesktopClient, allowDocuSignDesktopClientMetadata, allowedAddressBookAccess, allowedAddressBookAccessMetadata, allowedClickwrapsAccess, allowedClickwrapsAccessMetadata, allowedDocumentTemplateLibraryAccess, allowedDocumentTemplateLibraryAccessMetadata, allowedOrchestrationAccess, allowedOrchestrationAccessMetadata, allowedTemplateAccess, allowedTemplateAccessMetadata, allowedToBeEnvelopeTransferRecipient, allowedToBeEnvelopeTransferRecipientMetadata, allowEnvelopeSending, allowEnvelopeSendingMetadata, allowESealRecipients, allowESealRecipientsMetadata, allowPowerFormsAdminToAccessAllPowerFormEnvelopes, allowPowerFormsAdminToAccessAllPowerFormEnvelopesMetadata, allowSendersToSetRecipientEmailLanguage, allowSendersToSetRecipientEmailLanguageMetadata, allowSignerAttachments, allowSignerAttachmentsMetadata, allowSupplementalDocuments, allowSupplementalDocumentsMetadata, allowTaggingInSendAndCorrect, allowTaggingInSendAndCorrectMetadata, allowTransactions, allowTransactionsMetadata, allowVaulting, allowVaultingMetadata, allowWetSigningOverride, allowWetSigningOverrideMetadata, canBulkUploadAgreements, canBulkUploadAgreementsMetadata, canCreateTransaction, canCreateTransactionMetadata, canCreateWorkspaces, canCreateWorkspacesMetadata, canDeleteDocumentsInTransaction, canDeleteDocumentsInTransactionMetadata, canDeleteTransaction, canDeleteTransactionMetadata, canManageAgreementDeskRequest, canManageAgreementDeskRequestMetadata, canManageAgreementDeskRequestSetting, canManageAgreementDeskRequestSettingMetadata, canSendEnvelopesViaSMS, canSendEnvelopesViaSMSMetadata, disableDocumentUpload, disableDocumentUploadMetadata, disableOtherActions, disableOtherActionsMetadata, enableApiRequestLogging, enableApiRequestLoggingMetadata, enableKeyTermsSuggestionsByDocumentType, enableKeyTermsSuggestionsByDocumentTypeMetadata, enableRecipientViewingNotifications, enableRecipientViewingNotificationsMetadata, enableSequentialSigningInterface, enableSequentialSigningInterfaceMetadata, enableTransactionPointIntegration, enableTransactionPointIntegrationMetadata, playbookAccess, playbookAccessMetadata, powerFormRole, powerFormRoleMetadata, receiveCompletedSelfSignedDocumentsAsEmailLinks, receiveCompletedSelfSignedDocumentsAsEmailLinksMetadata, signingUiVersionMetadata, supplementalDocumentsMustAccept, supplementalDocumentsMustAcceptMetadata, supplementalDocumentsMustRead, supplementalDocumentsMustReadMetadata, supplementalDocumentsMustView, supplementalDocumentsMustViewMetadata, useNewDocuSignExperienceInterface, useNewDocuSignExperienceInterfaceMetadata, useNewSendingInterface, useNewSendingInterfaceMetadata, vaultingMode, vaultingModeMetadata, webForms, webFormsMetadata);
}
@@ -2873,6 +3215,9 @@ public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccountRoleSettings {\n");
+ sb.append(" accountAgreementsAccessType: ").append(toIndentedString(accountAgreementsAccessType)).append("\n");
+ sb.append(" accountAgreementsAccessTypeMetadata: ").append(toIndentedString(accountAgreementsAccessTypeMetadata)).append("\n");
+ sb.append(" accountManagementGranular: ").append(toIndentedString(accountManagementGranular)).append("\n");
sb.append(" allowAccountManagement: ").append(toIndentedString(allowAccountManagement)).append("\n");
sb.append(" allowAccountManagementMetadata: ").append(toIndentedString(allowAccountManagementMetadata)).append("\n");
sb.append(" allowApiAccess: ").append(toIndentedString(allowApiAccess)).append("\n");
@@ -2921,6 +3266,8 @@ public String toString() {
sb.append(" allowVaultingMetadata: ").append(toIndentedString(allowVaultingMetadata)).append("\n");
sb.append(" allowWetSigningOverride: ").append(toIndentedString(allowWetSigningOverride)).append("\n");
sb.append(" allowWetSigningOverrideMetadata: ").append(toIndentedString(allowWetSigningOverrideMetadata)).append("\n");
+ sb.append(" canBulkUploadAgreements: ").append(toIndentedString(canBulkUploadAgreements)).append("\n");
+ sb.append(" canBulkUploadAgreementsMetadata: ").append(toIndentedString(canBulkUploadAgreementsMetadata)).append("\n");
sb.append(" canCreateTransaction: ").append(toIndentedString(canCreateTransaction)).append("\n");
sb.append(" canCreateTransactionMetadata: ").append(toIndentedString(canCreateTransactionMetadata)).append("\n");
sb.append(" canCreateWorkspaces: ").append(toIndentedString(canCreateWorkspaces)).append("\n");
@@ -2929,6 +3276,10 @@ public String toString() {
sb.append(" canDeleteDocumentsInTransactionMetadata: ").append(toIndentedString(canDeleteDocumentsInTransactionMetadata)).append("\n");
sb.append(" canDeleteTransaction: ").append(toIndentedString(canDeleteTransaction)).append("\n");
sb.append(" canDeleteTransactionMetadata: ").append(toIndentedString(canDeleteTransactionMetadata)).append("\n");
+ sb.append(" canManageAgreementDeskRequest: ").append(toIndentedString(canManageAgreementDeskRequest)).append("\n");
+ sb.append(" canManageAgreementDeskRequestMetadata: ").append(toIndentedString(canManageAgreementDeskRequestMetadata)).append("\n");
+ sb.append(" canManageAgreementDeskRequestSetting: ").append(toIndentedString(canManageAgreementDeskRequestSetting)).append("\n");
+ sb.append(" canManageAgreementDeskRequestSettingMetadata: ").append(toIndentedString(canManageAgreementDeskRequestSettingMetadata)).append("\n");
sb.append(" canSendEnvelopesViaSMS: ").append(toIndentedString(canSendEnvelopesViaSMS)).append("\n");
sb.append(" canSendEnvelopesViaSMSMetadata: ").append(toIndentedString(canSendEnvelopesViaSMSMetadata)).append("\n");
sb.append(" disableDocumentUpload: ").append(toIndentedString(disableDocumentUpload)).append("\n");
@@ -2945,6 +3296,8 @@ public String toString() {
sb.append(" enableSequentialSigningInterfaceMetadata: ").append(toIndentedString(enableSequentialSigningInterfaceMetadata)).append("\n");
sb.append(" enableTransactionPointIntegration: ").append(toIndentedString(enableTransactionPointIntegration)).append("\n");
sb.append(" enableTransactionPointIntegrationMetadata: ").append(toIndentedString(enableTransactionPointIntegrationMetadata)).append("\n");
+ sb.append(" playbookAccess: ").append(toIndentedString(playbookAccess)).append("\n");
+ sb.append(" playbookAccessMetadata: ").append(toIndentedString(playbookAccessMetadata)).append("\n");
sb.append(" powerFormRole: ").append(toIndentedString(powerFormRole)).append("\n");
sb.append(" powerFormRoleMetadata: ").append(toIndentedString(powerFormRoleMetadata)).append("\n");
sb.append(" receiveCompletedSelfSignedDocumentsAsEmailLinks: ").append(toIndentedString(receiveCompletedSelfSignedDocumentsAsEmailLinks)).append("\n");
diff --git a/src/main/java/com/docusign/esign/model/AccountSettingsInformation.java b/src/main/java/com/docusign/esign/model/AccountSettingsInformation.java
index 619439a4..548ae7e9 100644
--- a/src/main/java/com/docusign/esign/model/AccountSettingsInformation.java
+++ b/src/main/java/com/docusign/esign/model/AccountSettingsInformation.java
@@ -354,6 +354,12 @@ public class AccountSettingsInformation implements Serializable {
@JsonProperty("allowIDVPlatformMetadata")
private SettingsMetadata allowIDVPlatformMetadata = null;
+ @JsonProperty("allowIdvRiskAssessment")
+ private String allowIdvRiskAssessment = null;
+
+ @JsonProperty("allowIdvRiskAssessmentMetadata")
+ private SettingsMetadata allowIdvRiskAssessmentMetadata = null;
+
@JsonProperty("allowInPerson")
private String allowInPerson = null;
@@ -1449,6 +1455,12 @@ public class AccountSettingsInformation implements Serializable {
@JsonProperty("enableNavigatorTrialMetadata")
private SettingsMetadata enableNavigatorTrialMetadata = null;
+ @JsonProperty("enableNotaryOnDemandWitness")
+ private String enableNotaryOnDemandWitness = null;
+
+ @JsonProperty("enableNotaryOnDemandWitnessMetadata")
+ private SettingsMetadata enableNotaryOnDemandWitnessMetadata = null;
+
@JsonProperty("enableObligationManagement")
private String enableObligationManagement = null;
@@ -1590,7 +1602,7 @@ public class AccountSettingsInformation implements Serializable {
@JsonProperty("enableSignerAttachmentsMetadata")
private SettingsMetadata enableSignerAttachmentsMetadata = null;
- @JsonProperty("enableSigningAIFeaturesPlan")
+ @JsonProperty("EnableSigningAIFeaturesPlan")
private String enableSigningAIFeaturesPlan = null;
@JsonProperty("enableSigningAIFeaturesPlanMetadata")
@@ -5473,6 +5485,60 @@ public void setAllowIDVPlatformMetadata(SettingsMetadata allowIDVPlatformMetadat
}
+ /**
+ * allowIdvRiskAssessment.
+ *
+ * @return AccountSettingsInformation
+ **/
+ public AccountSettingsInformation allowIdvRiskAssessment(String allowIdvRiskAssessment) {
+ this.allowIdvRiskAssessment = allowIdvRiskAssessment;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowIdvRiskAssessment
+ **/
+ @Schema(description = "")
+ public String getAllowIdvRiskAssessment() {
+ return allowIdvRiskAssessment;
+ }
+
+ /**
+ * setAllowIdvRiskAssessment.
+ **/
+ public void setAllowIdvRiskAssessment(String allowIdvRiskAssessment) {
+ this.allowIdvRiskAssessment = allowIdvRiskAssessment;
+ }
+
+
+ /**
+ * allowIdvRiskAssessmentMetadata.
+ *
+ * @return AccountSettingsInformation
+ **/
+ public AccountSettingsInformation allowIdvRiskAssessmentMetadata(SettingsMetadata allowIdvRiskAssessmentMetadata) {
+ this.allowIdvRiskAssessmentMetadata = allowIdvRiskAssessmentMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowIdvRiskAssessmentMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getAllowIdvRiskAssessmentMetadata() {
+ return allowIdvRiskAssessmentMetadata;
+ }
+
+ /**
+ * setAllowIdvRiskAssessmentMetadata.
+ **/
+ public void setAllowIdvRiskAssessmentMetadata(SettingsMetadata allowIdvRiskAssessmentMetadata) {
+ this.allowIdvRiskAssessmentMetadata = allowIdvRiskAssessmentMetadata;
+ }
+
+
/**
* allowInPerson.
*
@@ -15328,6 +15394,60 @@ public void setEnableNavigatorTrialMetadata(SettingsMetadata enableNavigatorTria
}
+ /**
+ * enableNotaryOnDemandWitness.
+ *
+ * @return AccountSettingsInformation
+ **/
+ public AccountSettingsInformation enableNotaryOnDemandWitness(String enableNotaryOnDemandWitness) {
+ this.enableNotaryOnDemandWitness = enableNotaryOnDemandWitness;
+ return this;
+ }
+
+ /**
+ * .
+ * @return enableNotaryOnDemandWitness
+ **/
+ @Schema(description = "")
+ public String getEnableNotaryOnDemandWitness() {
+ return enableNotaryOnDemandWitness;
+ }
+
+ /**
+ * setEnableNotaryOnDemandWitness.
+ **/
+ public void setEnableNotaryOnDemandWitness(String enableNotaryOnDemandWitness) {
+ this.enableNotaryOnDemandWitness = enableNotaryOnDemandWitness;
+ }
+
+
+ /**
+ * enableNotaryOnDemandWitnessMetadata.
+ *
+ * @return AccountSettingsInformation
+ **/
+ public AccountSettingsInformation enableNotaryOnDemandWitnessMetadata(SettingsMetadata enableNotaryOnDemandWitnessMetadata) {
+ this.enableNotaryOnDemandWitnessMetadata = enableNotaryOnDemandWitnessMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return enableNotaryOnDemandWitnessMetadata
+ **/
+ @Schema(description = "")
+ public SettingsMetadata getEnableNotaryOnDemandWitnessMetadata() {
+ return enableNotaryOnDemandWitnessMetadata;
+ }
+
+ /**
+ * setEnableNotaryOnDemandWitnessMetadata.
+ **/
+ public void setEnableNotaryOnDemandWitnessMetadata(SettingsMetadata enableNotaryOnDemandWitnessMetadata) {
+ this.enableNotaryOnDemandWitnessMetadata = enableNotaryOnDemandWitnessMetadata;
+ }
+
+
/**
* enableObligationManagement.
*
@@ -25223,6 +25343,8 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.allowIDVLevel3Metadata, accountSettingsInformation.allowIDVLevel3Metadata) &&
Objects.equals(this.allowIDVPlatform, accountSettingsInformation.allowIDVPlatform) &&
Objects.equals(this.allowIDVPlatformMetadata, accountSettingsInformation.allowIDVPlatformMetadata) &&
+ Objects.equals(this.allowIdvRiskAssessment, accountSettingsInformation.allowIdvRiskAssessment) &&
+ Objects.equals(this.allowIdvRiskAssessmentMetadata, accountSettingsInformation.allowIdvRiskAssessmentMetadata) &&
Objects.equals(this.allowInPerson, accountSettingsInformation.allowInPerson) &&
Objects.equals(this.allowInPersonElectronicNotary, accountSettingsInformation.allowInPersonElectronicNotary) &&
Objects.equals(this.allowInPersonElectronicNotaryMetadata, accountSettingsInformation.allowInPersonElectronicNotaryMetadata) &&
@@ -25588,6 +25710,8 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.enableNavigatorPartialIngestionMetadata, accountSettingsInformation.enableNavigatorPartialIngestionMetadata) &&
Objects.equals(this.enableNavigatorTrial, accountSettingsInformation.enableNavigatorTrial) &&
Objects.equals(this.enableNavigatorTrialMetadata, accountSettingsInformation.enableNavigatorTrialMetadata) &&
+ Objects.equals(this.enableNotaryOnDemandWitness, accountSettingsInformation.enableNotaryOnDemandWitness) &&
+ Objects.equals(this.enableNotaryOnDemandWitnessMetadata, accountSettingsInformation.enableNotaryOnDemandWitnessMetadata) &&
Objects.equals(this.enableObligationManagement, accountSettingsInformation.enableObligationManagement) &&
Objects.equals(this.enableObligationManagementMetadata, accountSettingsInformation.enableObligationManagementMetadata) &&
Objects.equals(this.enableParticipantRecipientSettingMetadata, accountSettingsInformation.enableParticipantRecipientSettingMetadata) &&
@@ -25955,7 +26079,7 @@ public boolean equals(java.lang.Object o) {
*/
@Override
public int hashCode() {
- return Objects.hash(accessCodeFormat, accountDateTimeFormat, accountDateTimeFormatMetadata, accountDefaultLanguage, accountDefaultLanguageMetadata, accountName, accountNameMetadata, accountNotification, accountUISettings, adoptSigConfig, adoptSigConfigMetadata, advancedCorrect, advancedCorrectMetadata, advancedSearchEnableTabField, advancedSearchEnableTabFieldMetadata, advancedSearchEnableTemplateIdField, advancedSearchEnableTemplateIdFieldMetadata, advancedSearchEnableTemplateNameField, advancedSearchEnableTemplateNameFieldMetadata, allowAccessCodeFormat, allowAccessCodeFormatMetadata, allowAccountManagementGranular, allowAccountManagementGranularMetadata, allowAccountMemberNameChange, allowAccountMemberNameChangeMetadata, allowACE, allowACEMetadata, allowAdvancedRecipientRoutingConditional, allowAdvancedRecipientRoutingConditionalMetadata, allowAgentNameEmailEdit, allowAgentNameEmailEditMetadata, allowAgreementActions, allowAgreementActionsMetadata, allowAgreementOrchestrations, allowAgreementOrchestrationsMetadata, allowAutoNavSettings, allowAutoNavSettingsMetadata, allowAutoTagging, allowAutoTaggingMetadata, allowBulkSend, allowBulkSendMetadata, allowCDWithdraw, allowCDWithdrawMetadata, allowConnectAgreementUI, allowConnectAgreementUIMetadata, allowConnectAuthoritativeCopyReadyEventUI, allowConnectEnvelopeReminderSentEventUI, allowConnectEnvelopeRemovedEvent, allowConnectExtensionUI, allowConnectHttpListenerConfigs, allowConnectIdentityVerificationUI, allowConnectOAuthUI, allowConnectSendFinishLater, allowConnectSendFinishLaterMetadata, allowConnectUnifiedPayloadUI, allowConsumerDisclosureOverride, allowConsumerDisclosureOverrideMetadata, allowDataDownload, allowDataDownloadMetadata, allowDelayedRouting, allowDelayedRoutingMetadata, allowDelegatedSigning, allowDelegatedSigningMetadata, allowDocGenDocuments, allowDocGenDocumentsMetadata, allowDocumentDisclosures, allowDocumentDisclosuresMetadata, allowDocumentsOnSignedEnvelopes, allowDocumentsOnSignedEnvelopesMetadata, allowDocumentVisibility, allowDocumentVisibilityMetadata, allowEditingEnvelopesOnBehalfOfOthers, allowEditingEnvelopesOnBehalfOfOthersMetadata, allowEHankoStamps, allowEHankoStampsMetadata, allowENoteEOriginal, allowENoteEOriginalMetadata, allowEnvelopeCorrect, allowEnvelopeCorrectMetadata, allowEnvelopeCustodyTransfer, allowEnvelopeCustodyTransferMetadata, allowEnvelopeCustomFields, allowEnvelopeCustomFieldsMetadata, allowEnvelopePublishReporting, allowEnvelopePublishReportingMetadata, allowEnvelopeReporting, allowEnvelopeReportingMetadata, allowExpression, allowExpressionMetadata, allowExpressSignerCertificate, allowExpressSignerCertificateMetadata, allowExtendedSendingResourceFile, allowExtendedSendingResourceFileMetadata, allowExternalLinkedAccounts, allowExternalLinkedAccountsMetadata, allowExternalSignaturePad, allowExternalSignaturePadMetadata, allowIDVForEUQualifiedSignatures, allowIDVForEUQualifiedSignaturesMetadata, allowIDVLevel1, allowIDVLevel1Metadata, allowIDVLevel1Trial, allowIDVLevel1TrialMetadata, allowIDVLevel2, allowIDVLevel2Metadata, allowIDVLevel3, allowIDVLevel3Metadata, allowIDVPlatform, allowIDVPlatformMetadata, allowInPerson, allowInPersonElectronicNotary, allowInPersonElectronicNotaryMetadata, allowInPersonMetadata, allowManagedStamps, allowManagedStampsMetadata, allowManagingEnvelopesOnBehalfOfOthers, allowManagingEnvelopesOnBehalfOfOthersMetadata, allowMarkup, allowMarkupMetadata, allowMemberTimeZone, allowMemberTimeZoneMetadata, allowMergeFields, allowMergeFieldsMetadata, allowMultipleBrandProfiles, allowMultipleBrandProfilesMetadata, allowMultipleSignerAttachments, allowMultipleSignerAttachmentsMetadata, allowNonUSPhoneAuth, allowNonUSPhoneAuthMetadata, allowOcrOfEnvelopeDocuments, allowOcrOfEnvelopeDocumentsMetadata, allowOfflineSigning, allowOfflineSigningMetadata, allowOnlyStandaloneWebForms, allowOnlyStandaloneWebFormsMetadata, allowOpenTrustSignerCertificate, allowOpenTrustSignerCertificateMetadata, allowOrganizationBranding, allowOrganizationBrandingMetadata, allowOrganizationDocusignMonitor, allowOrganizationDocusignMonitorFree, allowOrganizationDocusignMonitorFreeMetadata, allowOrganizationDocusignMonitorMetadata, allowOrganizationDomainUserManagement, allowOrganizationDomainUserManagementMetadata, allowOrganizations, allowOrganizationsMetadata, allowOrganizationSsoManagement, allowOrganizationSsoManagementMetadata, allowOrganizationToUseInPersonElectronicNotary, allowOrganizationToUseInPersonElectronicNotaryMetadata, allowOrganizationToUseRemoteNotary, allowOrganizationToUseRemoteNotaryMetadata, allowOrganizationToUseThirdPartyElectronicNotary, allowOrganizationToUseThirdPartyElectronicNotaryMetadata, allowParticipantRecipientType, allowParticipantRecipientTypeMetadata, allowPaymentProcessing, allowPaymentProcessingMetadata, allowPendingDestinationUrlEdition, allowPendingDestinationUrlEditionMetadata, allowPerformanceAnalytics, allowPerformanceAnalyticsMetadata, allowPhoneAuthentication, allowPhoneAuthenticationMetadata, allowPhoneAuthOverride, allowPhoneAuthOverrideMetadata, allowPrivateSigningGroups, allowPrivateSigningGroupsMetadata, allowRecipientConnect, allowRecipientConnectMetadata, allowReminders, allowRemindersMetadata, allowRemoteNotary, allowRemoteNotaryMetadata, allowResourceFileBranding, allowResourceFileBrandingMetadata, allowSafeBioPharmaSignerCertificate, allowSafeBioPharmaSignerCertificateMetadata, allowScheduledSending, allowScheduledSendingMetadata, allowSecurityAppliance, allowSecurityApplianceMetadata, allowSendingEnvelopesOnBehalfOfOthers, allowSendingEnvelopesOnBehalfOfOthersMetadata, allowSendToCertifiedDelivery, allowSendToCertifiedDeliveryMetadata, allowSendToIntermediary, allowSendToIntermediaryMetadata, allowServerTemplates, allowServerTemplatesMetadata, allowSetEmbeddedRecipientStartURL, allowSetEmbeddedRecipientStartURLMetadata, allowSharedTabs, allowSharedTabsMetadata, allowSignatureStamps, allowSignatureStampsMetadata, allowSignDocumentFromHomePage, allowSignDocumentFromHomePageMetadata, allowSignerReassign, allowSignerReassignMetadata, allowSignerReassignOverride, allowSignerReassignOverrideMetadata, allowSigningExtensions, allowSigningExtensionsMetadata, allowSigningGroups, allowSigningGroupsMetadata, allowSigningInsights, allowSigningInsightsMetadata, allowSigningRadioDeselect, allowSigningRadioDeselectMetadata, allowSignNow, allowSignNowMetadata, allowSMSDelivery, allowSMSDeliveryMetadata, allowSocialIdLogin, allowSocialIdLoginMetadata, allowSupplementalDocuments, allowSupplementalDocumentsMetadata, allowThirdPartyElectronicNotary, allowThirdPartyElectronicNotaryMetadata, allowTransactionsWorkspace, allowTransactionsWorkspaceMetadata, allowTransactionsWorkspaceOriginal, allowTransactionsWorkspaceOriginalMetadata, allowUsersToAccessDirectory, allowUsersToAccessDirectoryMetadata, allowValueInsights, allowValueInsightsMetadata, allowWebForms, allowWebFormsMetadata, allowWhatsAppDelivery, allowWhatsAppDeliveryMetadata, anchorPopulationScope, anchorPopulationScopeMetadata, anchorTagVersionedPlacementEnabled, anchorTagVersionedPlacementMetadataEnabled, attachCompletedEnvelope, attachCompletedEnvelopeMetadata, authenticationCheck, authenticationCheckMetadata, autoNavRule, autoNavRuleMetadata, autoProvisionSignerAccount, autoProvisionSignerAccountMetadata, bccEmailArchive, bccEmailArchiveMetadata, betaSwitchConfiguration, betaSwitchConfigurationMetadata, billingAddress, billingAddressMetadata, bulkSend, bulkSendActionResendLimit, bulkSendMaxCopiesInBatch, bulkSendMaxUnprocessedEnvelopesCount, bulkSendMetadata, canSelfBrandSend, canSelfBrandSendMetadata, canSelfBrandSign, canSelfBrandSignMetadata, canUseSalesforceOAuth, canUseSalesforceOAuthMetadata, captureVoiceRecording, captureVoiceRecordingMetadata, cfr21SimplifiedSigningEnabled, cfr21SimplifiedSigningEnabledMetadata, cfrUseWideImage, cfrUseWideImageMetadata, checkForMultipleAdminsOnAccount, checkForMultipleAdminsOnAccountMetadata, chromeSignatureEnabled, chromeSignatureEnabledMetadata, cloudReady, commentEmailShowMessageText, commentEmailShowMessageTextMetadata, commentsAllowEnvelopeOverride, commentsAllowEnvelopeOverrideMetadata, conditionalFieldsEnabled, conditionalFieldsEnabledMetadata, consumerDisclosureFrequency, consumerDisclosureFrequencyMetadata, convertPdfFields, convertPdfFieldsMetadata, customExtractionPlanLevels, customExtractionPlanLevelsMetadata, dataPopulationScope, dataPopulationScopeMetadata, defaultSigningResponsiveView, defaultSigningResponsiveViewMetadata, defaultSigningResponsiveViewUseGrade, defaultSigningResponsiveViewUseGradeMetadata, defaultToAdvancedEnvelopesFilterForm, defaultToAdvancedEnvelopesFilterFormMetadata, disableAutoTemplateMatching, disableAutoTemplateMatchingMetadata, disableLegacyKba, disableLegacyKbaMetadata, disableLegacySharedEnvelopes, disableLegacySharedEnvelopesMetadata, disableMobileApp, disableMobileAppMetadata, disableMobilePushNotifications, disableMobilePushNotificationsMetadata, disableMobileSending, disableMobileSendingMetadata, disableMultipleSessions, disableMultipleSessionsMetadata, disablePurgeNotificationsForSenderMetadata, disableSignerCertView, disableSignerCertViewMetadata, disableSignerHistoryView, disableSignerHistoryViewMetadata, disableStyleSignature, disableStyleSignatureMetadata, disableUploadSignature, disableUploadSignatureMetadata, disableUserSharing, disableUserSharingMetadata, displayBetaSwitch, displayBetaSwitchMetadata, documentConversionRestrictions, documentConversionRestrictionsMetadata, documentRetention, documentRetentionMetadata, documentRetentionPurgeTabs, documentVisibility, documentVisibilityMetadata, draftEnvelopeRetention, draftEnvelopeRetentionMetadata, dssSCOREFDN196RebrandDocuSignIsNotAVerb, dssSIGN28411EnableLeavePagePromptRadminOption, dssSIGN29182SlideUpBarRadminOption, emailTemplateVersion, emailTemplateVersionMetadata, enableAccessCodeGenerator, enableAccessCodeGeneratorMetadata, enableAccountWideSearch, enableAccountWideSearchMetadata, enableAdditionalAdvancedWebFormsFeatures, enableAdditionalAdvancedWebFormsFeaturesMetadata, enableAdmHealthcare, enableAdmHealthcareMetadata, enableAdvancedEnvelopesSearch, enableAdvancedEnvelopesSearchMetadata, enableAdvancedPayments, enableAdvancedPaymentsMetadata, enableAdvancedPowerForms, enableAdvancedPowerFormsMetadata, enableAdvancedSearch, enableAdvancedSearchMetadata, enableAgreementActionsForCLM, enableAgreementActionsForCLMMetadata, enableAgreementActionsForESign, enableAgreementActionsForESignMetadata, enableAgreementDeskAdvanced, enableAgreementDeskAdvancedMetaData, enableAIContractReview, enableAIContractReviewMetadata, enableAISenderMessage, enableAISenderMessageMetadata, enableAISuggestedFields, enableAISuggestedFieldsAutoPlace, enableAISuggestedFieldsAutoPlaceMetadata, enableAISuggestedFieldsMetadata, enableAutoNav, enableAutoNavMetadata, enableBatchUpdateEnvelopeTypes, enableBatchUpdateEnvelopeTypesMetadata, enableBccDummyLink, enableBccDummyLinkMetadata, enableCalculatedFields, enableCalculatedFieldsMetadata, enableCFRRapidSigningEmbeddedAuth, enableCFRRapidSigningEmbeddedAuthMetadata, enableClickPlus, enableClickPlusConditionalContent, enableClickPlusConditionalContentMetaData, enableClickPlusCustomFields, enableClickPlusCustomFieldsMetaData, enableClickPlusCustomStyle, enableClickPlusCustomStyleMetaData, enableClickPlusDynamicContent, enableClickPlusDynamicContentMetaData, enableClickPlusMetaData, enableClickwraps, enableClickwrapsMetadata, enableCombinedPDFDownloadForSBS, enableCommentsHistoryDownloadInSigning, enableCommentsHistoryDownloadInSigningMetadata, enableContactSuggestions, enableContactSuggestionsMetadata, enableContentSearch, enableContentSearchMetadata, enableCoupaCoreExtension, enableCoupaCoreExtensionMetadata, enableCustomDataVerificationExtensions, enableCustomDataVerificationExtensionsMetadata, enableCustomerSatisfactionMetricTracking, enableCustomerSatisfactionMetricTrackingMetadata, enableDataVerificationExtensions, enableDataVerificationExtensionsMetadata, enableDocumentTemplateLibrary, enableDocumentTemplateLibraryMetadata, enableDSigEUAdvancedPens, enableDSigEUAdvancedPensMetadata, enableDSigExpressPens, enableDSigExpressPensMetadata, enableDSigIDCheckForAESPens, enableDSigIDCheckForAESPensMetadata, enableDSigIDCheckInPersonForQESPens, enableDSigIDCheckInPersonForQESPensMetadata, enableDSigIDCheckRemoteForQESPens, enableDSigIDCheckRemoteForQESPensMetadata, enableDSigIDVerificationPens, enableDSigIDVerificationPensMetadata, enableDSigIDVerificationPremierPens, enableDSigIDVerificationPremierPensMetadata, enableDSigPenGroupEuQes, enableDSigPenGroupEuQesMetadata, enableDSigPlgEuQesPens, enableDSigPlgEuQesPensMetadata, enableDSPro, enableDSProMetadata, enableEnforceTlsEmailsSettingMetadata, enableEnvelopeStampingByAccountAdmin, enableEnvelopeStampingByAccountAdminMetadata, enableEnvelopeStampingByDSAdmin, enableEnvelopeStampingByDSAdminMetadata, enableESignAPIHourlyLimitManagement, enableESignAPIHourlyLimitManagementMetadata, enableEsignCommunities, enableEsignCommunitiesMetadata, enableEsignTaskList, enableEsignTaskListMetadata, enableGenerationWith3PIntegration, enableGenerationWith3PIntegrationMetaData, enableIDFxAccountlessSMSAuthForPart11, enableIDFxAccountlessSMSAuthForPart11Metadata, enableIDFxIntuitKBA, enableIDFxIntuitKBAMetadata, enableIDFxPhoneAuthentication, enableIDFxPhoneAuthenticationMetadata, enableIdfxPhoneAuthSignatureAuthStatus, enableIdfxPhoneAuthSignatureAuthStatusMetadata, enableInboxBrowseViewsPoweredByElasticSearch, enableInboxBrowseViewsPoweredByElasticSearchMetadata, enableInboxRelevanceSort, enableInboxRelevanceSortMetadata, enableInBrowserEditor, enableInBrowserEditorMetadata, enableKeyTermsSuggestionsByDocumentType, enableKeyTermsSuggestionsByDocumentTypeMetadata, enableLargeFileSupport, enableLargeFileSupportMetadata, enableLegacySharedEnvelopes, enableLegacySharedEnvelopesMetadata, enableLicenseManagement, enableLicenseManagementMetadata, enableMicrosoftDynamics365Extension, enableMicrosoftDynamics365ExtensionMetadata, enableMultiUserRepositoryFeatures, enableMultiUserRepositoryFeaturesMetadata, enableNavigatorAPIDataIn, enableNavigatorAPIDataInMetadata, enableNavigatorAPIDataOut, enableNavigatorAPIDataOutMetadata, enableNavigatorAPIUtilities, enableNavigatorAPIUtilitiesMetadata, enableNavigatorForHR, enableNavigatorForHRMetadata, enableNavigatorPartialIngestion, enableNavigatorPartialIngestionMetadata, enableNavigatorTrial, enableNavigatorTrialMetadata, enableObligationManagement, enableObligationManagementMetadata, enableParticipantRecipientSettingMetadata, enablePaymentProcessing, enablePaymentProcessingMetadata, enablePDFAConversion, enablePDFAConversionMetadata, enablePowerForm, enablePowerFormDirect, enablePowerFormDirectMetadata, enablePowerFormMetadata, enablePremiumDataVerificationExtensions, enablePremiumDataVerificationExtensionsMetadata, enableRecipientDomainValidation, enableRecipientDomainValidationMetadata, enableRecipientMayProvidePhoneNumber, enableRecipientMayProvidePhoneNumberMetadata, enableReportLinks, enableReportLinksMetadata, enableRequireSignOnPaper, enableRequireSignOnPaperMetadata, enableReservedDomain, enableReservedDomainMetadata, enableResponsiveSigning, enableResponsiveSigningMetadata, enableSAPAribaExtension, enableSAPAribaExtensionMetaData, enableScheduledRelease, enableScheduledReleaseMetadata, enableSearchServiceAzureUri, enableSearchServiceAzureUriMetadata, enableSearchSiteSpecificApi, enableSearchSiteSpecificApiMetadata, enableSendingTagsFontSettings, enableSendingTagsFontSettingsMetadata, enableSendToAgent, enableSendToAgentMetadata, enableSendToIntermediary, enableSendToIntermediaryMetadata, enableSendToManage, enableSendToManageMetadata, enableSequentialSigningAPI, enableSequentialSigningAPIMetadata, enableSequentialSigningUI, enableSequentialSigningUIMetadata, enableSignerAttachments, enableSignerAttachmentsMetadata, enableSigningAIFeaturesPlan, enableSigningAIFeaturesPlanMetadata, enableSigningAIFeaturesSetting, enableSigningAIFeaturesSettingMetadata, enableSigningExtensionComments, enableSigningExtensionCommentsMetadata, enableSigningExtensionConversations, enableSigningExtensionConversationsMetadata, enableSigningGroupContinuePageSetting, enableSigningGroupContinuePageSettingMetadata, enableSigningOrderSettingsForAccount, enableSigningOrderSettingsForAccountMetadata, enableSignOnPaper, enableSignOnPaperMetadata, enableSignOnPaperOverride, enableSignOnPaperOverrideMetadata, enableSignWithNotary, enableSignWithNotaryMetadata, enableSmartContracts, enableSmartContractsMetadata, enableSMSAuthentication, enableSMSAuthenticationMetadata, enableSMSDeliveryAdditionalNotification, enableSMSDeliveryAdditionalNotificationMetadata, enableSMSDeliveryPrimary, enableSocialIdLogin, enableSocialIdLoginMetadata, enableStrikeThrough, enableStrikeThroughMetadata, enableTickets, enableTicketsMetaData, enableTransactionPoint, enableTransactionPointMetadata, enableUnifiedRepository, enableUnifiedRepositoryMetadata, enableVaulting, enableVaultingMetadata, enableWebFormsRuntimeAPIs, enableWebFormsRuntimeAPIsMetadata, enableWebFormsSeparateUserPermissions, enableWebFormsSeparateUserPermissionsMetadata, enableWitnessing, enableWitnessingMetadata, enableWorkdayFinancialsExtension, enableWorkdayFinancialsExtensionMetaData, enforceTemplateNameUniqueness, enforceTemplateNameUniquenessMetadata, enforceTlsEmails, enforceTlsEmailsMetadata, envelopeIntegrationAllowed, envelopeIntegrationAllowedMetadata, envelopeIntegrationEnabled, envelopeIntegrationEnabledMetadata, envelopeLimitsTotalDocumentSizeAllowedInMB, envelopeLimitsTotalDocumentSizeAllowedInMBEnabled, envelopeLimitsTotalDocumentSizeAllowedInMBEnabledMetadata, envelopeLimitsTotalDocumentSizeAllowedInMBMetadata, envelopeSearchMode, envelopeSearchModeMetadata, envelopeStampingDefaultValue, envelopeStampingDefaultValueMetadata, exitPrompt, exitPromptMetadata, expressSend, expressSendAllowTabs, expressSendAllowTabsMetadata, expressSendMetadata, externalDocumentSources, externalSignaturePadType, externalSignaturePadTypeMetadata, faxOutEnabled, faxOutEnabledMetadata, finishReminder, finishReminderMetadata, forbidAddingUserStamps, forbidAddingUserStampsMetadata, guidedFormsHtmlAllowed, guidedFormsHtmlAllowedMetadata, guidedFormsHtmlConversionPolicy, guidedFormsHtmlConversionPolicyMetadata, hasRecipientConnectClaimedDomain, hideAccountAddressInCoC, hideAccountAddressInCoCMetadata, hidePricing, hidePricingMetadata, idCheckConfigurations, idCheckExpire, idCheckExpireDays, idCheckExpireDaysMetadata, idCheckExpireMetadata, idCheckExpireMinutes, idCheckExpireMinutesMetadata, idCheckRequired, idCheckRequiredMetadata, identityVerification, identityVerificationMetadata, idfxKBAAuthenticationOverride, idfxKBAAuthenticationOverrideMetadata, idfxPhoneAuthenticationOverride, idfxPhoneAuthenticationOverrideMetadata, ignoreErrorIfAnchorTabNotFound, ignoreErrorIfAnchorTabNotFoundMetadataEnabled, inPersonIDCheckQuestion, inPersonIDCheckQuestionMetadata, inPersonSigningEnabled, inPersonSigningEnabledMetadata, inSessionEnabled, inSessionEnabledMetadata, inSessionSuppressEmails, inSessionSuppressEmailsMetadata, isConnectDocumentFieldsEnabled, isvEmbed, isvEmbedMetaData, isvOemEmbed, isvOemEmbedMetaData, linkedExternalPrimaryAccounts, maestroPlanLevels, maestroPlanLevelsMetadata, maximumSigningGroups, maximumSigningGroupsMetadata, maximumUsersPerSigningGroup, maximumUsersPerSigningGroupMetadata, maxNumberOfCustomStamps, mergeMixedModeResults, mergeMixedModeResultsMetadata, mobileSessionTimeout, mobileSessionTimeoutMetadata, numberOfActiveCustomStamps, optInMobileSigningV02, optInMobileSigningV02Metadata, optInUniversalSignatures, optOutAutoNavTextAndTabColorUpdates, optOutAutoNavTextAndTabColorUpdatesMetadata, optOutNewPlatformSeal, optOutNewPlatformSealPlatformMetadata, originalAccountSite, participantCopyOptOut, participantCopyOptOutMetadata, pdfMaxChunkedUploadPartSize, pdfMaxChunkedUploadPartSizeMetadata, pdfMaxChunkedUploadTotalSize, pdfMaxChunkedUploadTotalSizeMetadata, pdfMaxIndividualUploadSize, pdfMaxIndividualUploadSizeMetadata, phoneAuthRecipientMayProvidePhoneNumber, phoneAuthRecipientMayProvidePhoneNumberMetadata, pkiSignDownloadedPDFDocs, pkiSignDownloadedPDFDocsMetadata, readOnlyMode, readOnlyModeMetadata, recipientsCanSignOffline, recipientsCanSignOfflineMetadata, recipientSigningAutoNavigationControl, recipientSigningAutoNavigationControlMetadata, recycleBinEnvelopeRetention, recycleBinEnvelopeRetentionMetadata, require21CFRpt11Compliance, require21CFRpt11ComplianceMetadata, requireDeclineReason, requireDeclineReasonMetadata, requireExternalUserManagement, requireExternalUserManagementMetadata, requireSignerCertificateType, requireSignerCertificateTypeMetadata, rsaVeridAccountName, rsaVeridPassword, rsaVeridRuleset, rsaVeridUserId, selfSignedRecipientEmailDocument, selfSignedRecipientEmailDocumentMetadata, selfSignedRecipientEmailDocumentUserOverride, selfSignedRecipientEmailDocumentUserOverrideMetadata, senderCanSignInEachLocation, senderCanSignInEachLocationMetadata, senderMustAuthenticateSigning, senderMustAuthenticateSigningMetadata, sendingTagsFontColor, sendingTagsFontColorMetadata, sendingTagsFontName, sendingTagsFontNameMetadata, sendingTagsFontSize, sendingTagsFontSizeMetadata, sendLockoutRecipientNotification, sendLockoutRecipientNotificationMetadata, sendToCertifiedDeliveryEnabled, sendToCertifiedDeliveryEnabledMetadata, sessionTimeout, sessionTimeoutMetadata, setRecipEmailLang, setRecipEmailLangMetadata, setRecipSignLang, setRecipSignLangMetadata, sharedTemplateFolders, sharedTemplateFoldersMetadata, showCompleteDialogInEmbeddedSession, showCompleteDialogInEmbeddedSessionMetadata, showConditionalRoutingOnSend, showConditionalRoutingOnSendMetadata, showInitialConditionalFields, showInitialConditionalFieldsMetadata, showLocalizedWatermarks, showLocalizedWatermarksMetadata, showMaskedFieldsWhenDownloadingDocumentAsSender, showMaskedFieldsWhenDownloadingDocumentAsSenderMetadata, showTutorials, showTutorialsMetadata, signatureProviders, signatureProvidersMetadata, signDateFormat, signDateFormatMetadata, signDateTimeAccountLanguageOverride, signDateTimeAccountLanguageOverrideMetadata, signDateTimeAccountTimezoneOverride, signDateTimeAccountTimezoneOverrideMetadata, signerAttachCertificateToEnvelopePDF, signerAttachCertificateToEnvelopePDFMetadata, signerAttachConcat, signerAttachConcatMetadata, signerCanCreateAccount, signerCanCreateAccountMetadata, signerCanSignOnMobile, signerCanSignOnMobileMetadata, signerInSessionUseEnvelopeCompleteEmail, signerInSessionUseEnvelopeCompleteEmailMetadata, signerLoginRequirements, signerLoginRequirementsMetadata, signerMustHaveAccount, signerMustHaveAccountMetadata, signerMustLoginToSign, signerMustLoginToSignMetadata, signerShowSecureFieldInitialValues, signerShowSecureFieldInitialValuesMetadata, signingSessionTimeout, signingSessionTimeoutMetadata, signingUiVersion, signingUiVersionMetadata, signTimeFormat, signTimeFormatMetadata, signTimeShowAmPm, signTimeShowAmPmMetadata, simplifiedSendingEnabled, simplifiedSendingEnabledMetadata, singleSignOnEnabled, singleSignOnEnabledMetadata, skipAuthCompletedEnvelopes, skipAuthCompletedEnvelopesMetadata, socialIdRecipAuth, socialIdRecipAuthMetadata, specifyDocumentVisibility, specifyDocumentVisibilityMetadata, startInAdvancedCorrect, startInAdvancedCorrectMetadata, supplementalDocumentsMustAccept, supplementalDocumentsMustAcceptMetadata, supplementalDocumentsMustRead, supplementalDocumentsMustReadMetadata, supplementalDocumentsMustView, supplementalDocumentsMustViewMetadata, suppressCertificateEnforcement, suppressCertificateEnforcementMetadata, tabAccountSettings, timezoneOffsetAPI, timezoneOffsetAPIMetadata, timezoneOffsetUI, timezoneOffsetUIMetadata, universalSignatureOptIn, universalSignatureSkipPlatformSignature, universalSignatureSkipPlatformSignatureMetadata, useAccountLevelEmail, useAccountLevelEmailMetadata, useConsumerDisclosure, useConsumerDisclosureMetadata, useConsumerDisclosureWithinAccount, useConsumerDisclosureWithinAccountMetadata, useDerivedKeys, useDerivedKeysMetadata, useDocuSignExpressSignerCertificate, useDocuSignExpressSignerCertificateMetadata, useEnvelopeSearchMixedMode, useEnvelopeSearchMixedModeMetadata, useMultiAppGroupsData, useMultiAppGroupsDataMetadata, useNewBlobForPdf, useNewBlobForPdfMetadata, useNewEnvelopeSearch, useNewEnvelopeSearchMetadata, useNewEnvelopeSearchOnlyWhenSearchingAfterDate, useNewEnvelopeSearchOnlyWhenSearchingAfterDateMetadata, useNewEnvelopeSearchOnlyWithSearchTerm, useNewEnvelopeSearchOnlyWithSearchTermMetadata, useSAFESignerCertificates, useSAFESignerCertificatesMetadata, usesAPI, usesAPIMetadata, useSignatureProviderPlatform, useSignatureProviderPlatformMetadata, useSmartContractsV1, validationsAllowed, validationsAllowedMetadata, validationsBrand, validationsBrandMetadata, validationsCadence, validationsCadenceMetadata, validationsEnabled, validationsEnabledMetadata, validationsReport, validationsReportMetadata, waterMarkEnabled, waterMarkEnabledMetadata, writeReminderToEnvelopeHistory, writeReminderToEnvelopeHistoryMetadata, wurflMinAllowableScreenSize, wurflMinAllowableScreenSizeMetadata);
+ return Objects.hash(accessCodeFormat, accountDateTimeFormat, accountDateTimeFormatMetadata, accountDefaultLanguage, accountDefaultLanguageMetadata, accountName, accountNameMetadata, accountNotification, accountUISettings, adoptSigConfig, adoptSigConfigMetadata, advancedCorrect, advancedCorrectMetadata, advancedSearchEnableTabField, advancedSearchEnableTabFieldMetadata, advancedSearchEnableTemplateIdField, advancedSearchEnableTemplateIdFieldMetadata, advancedSearchEnableTemplateNameField, advancedSearchEnableTemplateNameFieldMetadata, allowAccessCodeFormat, allowAccessCodeFormatMetadata, allowAccountManagementGranular, allowAccountManagementGranularMetadata, allowAccountMemberNameChange, allowAccountMemberNameChangeMetadata, allowACE, allowACEMetadata, allowAdvancedRecipientRoutingConditional, allowAdvancedRecipientRoutingConditionalMetadata, allowAgentNameEmailEdit, allowAgentNameEmailEditMetadata, allowAgreementActions, allowAgreementActionsMetadata, allowAgreementOrchestrations, allowAgreementOrchestrationsMetadata, allowAutoNavSettings, allowAutoNavSettingsMetadata, allowAutoTagging, allowAutoTaggingMetadata, allowBulkSend, allowBulkSendMetadata, allowCDWithdraw, allowCDWithdrawMetadata, allowConnectAgreementUI, allowConnectAgreementUIMetadata, allowConnectAuthoritativeCopyReadyEventUI, allowConnectEnvelopeReminderSentEventUI, allowConnectEnvelopeRemovedEvent, allowConnectExtensionUI, allowConnectHttpListenerConfigs, allowConnectIdentityVerificationUI, allowConnectOAuthUI, allowConnectSendFinishLater, allowConnectSendFinishLaterMetadata, allowConnectUnifiedPayloadUI, allowConsumerDisclosureOverride, allowConsumerDisclosureOverrideMetadata, allowDataDownload, allowDataDownloadMetadata, allowDelayedRouting, allowDelayedRoutingMetadata, allowDelegatedSigning, allowDelegatedSigningMetadata, allowDocGenDocuments, allowDocGenDocumentsMetadata, allowDocumentDisclosures, allowDocumentDisclosuresMetadata, allowDocumentsOnSignedEnvelopes, allowDocumentsOnSignedEnvelopesMetadata, allowDocumentVisibility, allowDocumentVisibilityMetadata, allowEditingEnvelopesOnBehalfOfOthers, allowEditingEnvelopesOnBehalfOfOthersMetadata, allowEHankoStamps, allowEHankoStampsMetadata, allowENoteEOriginal, allowENoteEOriginalMetadata, allowEnvelopeCorrect, allowEnvelopeCorrectMetadata, allowEnvelopeCustodyTransfer, allowEnvelopeCustodyTransferMetadata, allowEnvelopeCustomFields, allowEnvelopeCustomFieldsMetadata, allowEnvelopePublishReporting, allowEnvelopePublishReportingMetadata, allowEnvelopeReporting, allowEnvelopeReportingMetadata, allowExpression, allowExpressionMetadata, allowExpressSignerCertificate, allowExpressSignerCertificateMetadata, allowExtendedSendingResourceFile, allowExtendedSendingResourceFileMetadata, allowExternalLinkedAccounts, allowExternalLinkedAccountsMetadata, allowExternalSignaturePad, allowExternalSignaturePadMetadata, allowIDVForEUQualifiedSignatures, allowIDVForEUQualifiedSignaturesMetadata, allowIDVLevel1, allowIDVLevel1Metadata, allowIDVLevel1Trial, allowIDVLevel1TrialMetadata, allowIDVLevel2, allowIDVLevel2Metadata, allowIDVLevel3, allowIDVLevel3Metadata, allowIDVPlatform, allowIDVPlatformMetadata, allowIdvRiskAssessment, allowIdvRiskAssessmentMetadata, allowInPerson, allowInPersonElectronicNotary, allowInPersonElectronicNotaryMetadata, allowInPersonMetadata, allowManagedStamps, allowManagedStampsMetadata, allowManagingEnvelopesOnBehalfOfOthers, allowManagingEnvelopesOnBehalfOfOthersMetadata, allowMarkup, allowMarkupMetadata, allowMemberTimeZone, allowMemberTimeZoneMetadata, allowMergeFields, allowMergeFieldsMetadata, allowMultipleBrandProfiles, allowMultipleBrandProfilesMetadata, allowMultipleSignerAttachments, allowMultipleSignerAttachmentsMetadata, allowNonUSPhoneAuth, allowNonUSPhoneAuthMetadata, allowOcrOfEnvelopeDocuments, allowOcrOfEnvelopeDocumentsMetadata, allowOfflineSigning, allowOfflineSigningMetadata, allowOnlyStandaloneWebForms, allowOnlyStandaloneWebFormsMetadata, allowOpenTrustSignerCertificate, allowOpenTrustSignerCertificateMetadata, allowOrganizationBranding, allowOrganizationBrandingMetadata, allowOrganizationDocusignMonitor, allowOrganizationDocusignMonitorFree, allowOrganizationDocusignMonitorFreeMetadata, allowOrganizationDocusignMonitorMetadata, allowOrganizationDomainUserManagement, allowOrganizationDomainUserManagementMetadata, allowOrganizations, allowOrganizationsMetadata, allowOrganizationSsoManagement, allowOrganizationSsoManagementMetadata, allowOrganizationToUseInPersonElectronicNotary, allowOrganizationToUseInPersonElectronicNotaryMetadata, allowOrganizationToUseRemoteNotary, allowOrganizationToUseRemoteNotaryMetadata, allowOrganizationToUseThirdPartyElectronicNotary, allowOrganizationToUseThirdPartyElectronicNotaryMetadata, allowParticipantRecipientType, allowParticipantRecipientTypeMetadata, allowPaymentProcessing, allowPaymentProcessingMetadata, allowPendingDestinationUrlEdition, allowPendingDestinationUrlEditionMetadata, allowPerformanceAnalytics, allowPerformanceAnalyticsMetadata, allowPhoneAuthentication, allowPhoneAuthenticationMetadata, allowPhoneAuthOverride, allowPhoneAuthOverrideMetadata, allowPrivateSigningGroups, allowPrivateSigningGroupsMetadata, allowRecipientConnect, allowRecipientConnectMetadata, allowReminders, allowRemindersMetadata, allowRemoteNotary, allowRemoteNotaryMetadata, allowResourceFileBranding, allowResourceFileBrandingMetadata, allowSafeBioPharmaSignerCertificate, allowSafeBioPharmaSignerCertificateMetadata, allowScheduledSending, allowScheduledSendingMetadata, allowSecurityAppliance, allowSecurityApplianceMetadata, allowSendingEnvelopesOnBehalfOfOthers, allowSendingEnvelopesOnBehalfOfOthersMetadata, allowSendToCertifiedDelivery, allowSendToCertifiedDeliveryMetadata, allowSendToIntermediary, allowSendToIntermediaryMetadata, allowServerTemplates, allowServerTemplatesMetadata, allowSetEmbeddedRecipientStartURL, allowSetEmbeddedRecipientStartURLMetadata, allowSharedTabs, allowSharedTabsMetadata, allowSignatureStamps, allowSignatureStampsMetadata, allowSignDocumentFromHomePage, allowSignDocumentFromHomePageMetadata, allowSignerReassign, allowSignerReassignMetadata, allowSignerReassignOverride, allowSignerReassignOverrideMetadata, allowSigningExtensions, allowSigningExtensionsMetadata, allowSigningGroups, allowSigningGroupsMetadata, allowSigningInsights, allowSigningInsightsMetadata, allowSigningRadioDeselect, allowSigningRadioDeselectMetadata, allowSignNow, allowSignNowMetadata, allowSMSDelivery, allowSMSDeliveryMetadata, allowSocialIdLogin, allowSocialIdLoginMetadata, allowSupplementalDocuments, allowSupplementalDocumentsMetadata, allowThirdPartyElectronicNotary, allowThirdPartyElectronicNotaryMetadata, allowTransactionsWorkspace, allowTransactionsWorkspaceMetadata, allowTransactionsWorkspaceOriginal, allowTransactionsWorkspaceOriginalMetadata, allowUsersToAccessDirectory, allowUsersToAccessDirectoryMetadata, allowValueInsights, allowValueInsightsMetadata, allowWebForms, allowWebFormsMetadata, allowWhatsAppDelivery, allowWhatsAppDeliveryMetadata, anchorPopulationScope, anchorPopulationScopeMetadata, anchorTagVersionedPlacementEnabled, anchorTagVersionedPlacementMetadataEnabled, attachCompletedEnvelope, attachCompletedEnvelopeMetadata, authenticationCheck, authenticationCheckMetadata, autoNavRule, autoNavRuleMetadata, autoProvisionSignerAccount, autoProvisionSignerAccountMetadata, bccEmailArchive, bccEmailArchiveMetadata, betaSwitchConfiguration, betaSwitchConfigurationMetadata, billingAddress, billingAddressMetadata, bulkSend, bulkSendActionResendLimit, bulkSendMaxCopiesInBatch, bulkSendMaxUnprocessedEnvelopesCount, bulkSendMetadata, canSelfBrandSend, canSelfBrandSendMetadata, canSelfBrandSign, canSelfBrandSignMetadata, canUseSalesforceOAuth, canUseSalesforceOAuthMetadata, captureVoiceRecording, captureVoiceRecordingMetadata, cfr21SimplifiedSigningEnabled, cfr21SimplifiedSigningEnabledMetadata, cfrUseWideImage, cfrUseWideImageMetadata, checkForMultipleAdminsOnAccount, checkForMultipleAdminsOnAccountMetadata, chromeSignatureEnabled, chromeSignatureEnabledMetadata, cloudReady, commentEmailShowMessageText, commentEmailShowMessageTextMetadata, commentsAllowEnvelopeOverride, commentsAllowEnvelopeOverrideMetadata, conditionalFieldsEnabled, conditionalFieldsEnabledMetadata, consumerDisclosureFrequency, consumerDisclosureFrequencyMetadata, convertPdfFields, convertPdfFieldsMetadata, customExtractionPlanLevels, customExtractionPlanLevelsMetadata, dataPopulationScope, dataPopulationScopeMetadata, defaultSigningResponsiveView, defaultSigningResponsiveViewMetadata, defaultSigningResponsiveViewUseGrade, defaultSigningResponsiveViewUseGradeMetadata, defaultToAdvancedEnvelopesFilterForm, defaultToAdvancedEnvelopesFilterFormMetadata, disableAutoTemplateMatching, disableAutoTemplateMatchingMetadata, disableLegacyKba, disableLegacyKbaMetadata, disableLegacySharedEnvelopes, disableLegacySharedEnvelopesMetadata, disableMobileApp, disableMobileAppMetadata, disableMobilePushNotifications, disableMobilePushNotificationsMetadata, disableMobileSending, disableMobileSendingMetadata, disableMultipleSessions, disableMultipleSessionsMetadata, disablePurgeNotificationsForSenderMetadata, disableSignerCertView, disableSignerCertViewMetadata, disableSignerHistoryView, disableSignerHistoryViewMetadata, disableStyleSignature, disableStyleSignatureMetadata, disableUploadSignature, disableUploadSignatureMetadata, disableUserSharing, disableUserSharingMetadata, displayBetaSwitch, displayBetaSwitchMetadata, documentConversionRestrictions, documentConversionRestrictionsMetadata, documentRetention, documentRetentionMetadata, documentRetentionPurgeTabs, documentVisibility, documentVisibilityMetadata, draftEnvelopeRetention, draftEnvelopeRetentionMetadata, dssSCOREFDN196RebrandDocuSignIsNotAVerb, dssSIGN28411EnableLeavePagePromptRadminOption, dssSIGN29182SlideUpBarRadminOption, emailTemplateVersion, emailTemplateVersionMetadata, enableAccessCodeGenerator, enableAccessCodeGeneratorMetadata, enableAccountWideSearch, enableAccountWideSearchMetadata, enableAdditionalAdvancedWebFormsFeatures, enableAdditionalAdvancedWebFormsFeaturesMetadata, enableAdmHealthcare, enableAdmHealthcareMetadata, enableAdvancedEnvelopesSearch, enableAdvancedEnvelopesSearchMetadata, enableAdvancedPayments, enableAdvancedPaymentsMetadata, enableAdvancedPowerForms, enableAdvancedPowerFormsMetadata, enableAdvancedSearch, enableAdvancedSearchMetadata, enableAgreementActionsForCLM, enableAgreementActionsForCLMMetadata, enableAgreementActionsForESign, enableAgreementActionsForESignMetadata, enableAgreementDeskAdvanced, enableAgreementDeskAdvancedMetaData, enableAIContractReview, enableAIContractReviewMetadata, enableAISenderMessage, enableAISenderMessageMetadata, enableAISuggestedFields, enableAISuggestedFieldsAutoPlace, enableAISuggestedFieldsAutoPlaceMetadata, enableAISuggestedFieldsMetadata, enableAutoNav, enableAutoNavMetadata, enableBatchUpdateEnvelopeTypes, enableBatchUpdateEnvelopeTypesMetadata, enableBccDummyLink, enableBccDummyLinkMetadata, enableCalculatedFields, enableCalculatedFieldsMetadata, enableCFRRapidSigningEmbeddedAuth, enableCFRRapidSigningEmbeddedAuthMetadata, enableClickPlus, enableClickPlusConditionalContent, enableClickPlusConditionalContentMetaData, enableClickPlusCustomFields, enableClickPlusCustomFieldsMetaData, enableClickPlusCustomStyle, enableClickPlusCustomStyleMetaData, enableClickPlusDynamicContent, enableClickPlusDynamicContentMetaData, enableClickPlusMetaData, enableClickwraps, enableClickwrapsMetadata, enableCombinedPDFDownloadForSBS, enableCommentsHistoryDownloadInSigning, enableCommentsHistoryDownloadInSigningMetadata, enableContactSuggestions, enableContactSuggestionsMetadata, enableContentSearch, enableContentSearchMetadata, enableCoupaCoreExtension, enableCoupaCoreExtensionMetadata, enableCustomDataVerificationExtensions, enableCustomDataVerificationExtensionsMetadata, enableCustomerSatisfactionMetricTracking, enableCustomerSatisfactionMetricTrackingMetadata, enableDataVerificationExtensions, enableDataVerificationExtensionsMetadata, enableDocumentTemplateLibrary, enableDocumentTemplateLibraryMetadata, enableDSigEUAdvancedPens, enableDSigEUAdvancedPensMetadata, enableDSigExpressPens, enableDSigExpressPensMetadata, enableDSigIDCheckForAESPens, enableDSigIDCheckForAESPensMetadata, enableDSigIDCheckInPersonForQESPens, enableDSigIDCheckInPersonForQESPensMetadata, enableDSigIDCheckRemoteForQESPens, enableDSigIDCheckRemoteForQESPensMetadata, enableDSigIDVerificationPens, enableDSigIDVerificationPensMetadata, enableDSigIDVerificationPremierPens, enableDSigIDVerificationPremierPensMetadata, enableDSigPenGroupEuQes, enableDSigPenGroupEuQesMetadata, enableDSigPlgEuQesPens, enableDSigPlgEuQesPensMetadata, enableDSPro, enableDSProMetadata, enableEnforceTlsEmailsSettingMetadata, enableEnvelopeStampingByAccountAdmin, enableEnvelopeStampingByAccountAdminMetadata, enableEnvelopeStampingByDSAdmin, enableEnvelopeStampingByDSAdminMetadata, enableESignAPIHourlyLimitManagement, enableESignAPIHourlyLimitManagementMetadata, enableEsignCommunities, enableEsignCommunitiesMetadata, enableEsignTaskList, enableEsignTaskListMetadata, enableGenerationWith3PIntegration, enableGenerationWith3PIntegrationMetaData, enableIDFxAccountlessSMSAuthForPart11, enableIDFxAccountlessSMSAuthForPart11Metadata, enableIDFxIntuitKBA, enableIDFxIntuitKBAMetadata, enableIDFxPhoneAuthentication, enableIDFxPhoneAuthenticationMetadata, enableIdfxPhoneAuthSignatureAuthStatus, enableIdfxPhoneAuthSignatureAuthStatusMetadata, enableInboxBrowseViewsPoweredByElasticSearch, enableInboxBrowseViewsPoweredByElasticSearchMetadata, enableInboxRelevanceSort, enableInboxRelevanceSortMetadata, enableInBrowserEditor, enableInBrowserEditorMetadata, enableKeyTermsSuggestionsByDocumentType, enableKeyTermsSuggestionsByDocumentTypeMetadata, enableLargeFileSupport, enableLargeFileSupportMetadata, enableLegacySharedEnvelopes, enableLegacySharedEnvelopesMetadata, enableLicenseManagement, enableLicenseManagementMetadata, enableMicrosoftDynamics365Extension, enableMicrosoftDynamics365ExtensionMetadata, enableMultiUserRepositoryFeatures, enableMultiUserRepositoryFeaturesMetadata, enableNavigatorAPIDataIn, enableNavigatorAPIDataInMetadata, enableNavigatorAPIDataOut, enableNavigatorAPIDataOutMetadata, enableNavigatorAPIUtilities, enableNavigatorAPIUtilitiesMetadata, enableNavigatorForHR, enableNavigatorForHRMetadata, enableNavigatorPartialIngestion, enableNavigatorPartialIngestionMetadata, enableNavigatorTrial, enableNavigatorTrialMetadata, enableNotaryOnDemandWitness, enableNotaryOnDemandWitnessMetadata, enableObligationManagement, enableObligationManagementMetadata, enableParticipantRecipientSettingMetadata, enablePaymentProcessing, enablePaymentProcessingMetadata, enablePDFAConversion, enablePDFAConversionMetadata, enablePowerForm, enablePowerFormDirect, enablePowerFormDirectMetadata, enablePowerFormMetadata, enablePremiumDataVerificationExtensions, enablePremiumDataVerificationExtensionsMetadata, enableRecipientDomainValidation, enableRecipientDomainValidationMetadata, enableRecipientMayProvidePhoneNumber, enableRecipientMayProvidePhoneNumberMetadata, enableReportLinks, enableReportLinksMetadata, enableRequireSignOnPaper, enableRequireSignOnPaperMetadata, enableReservedDomain, enableReservedDomainMetadata, enableResponsiveSigning, enableResponsiveSigningMetadata, enableSAPAribaExtension, enableSAPAribaExtensionMetaData, enableScheduledRelease, enableScheduledReleaseMetadata, enableSearchServiceAzureUri, enableSearchServiceAzureUriMetadata, enableSearchSiteSpecificApi, enableSearchSiteSpecificApiMetadata, enableSendingTagsFontSettings, enableSendingTagsFontSettingsMetadata, enableSendToAgent, enableSendToAgentMetadata, enableSendToIntermediary, enableSendToIntermediaryMetadata, enableSendToManage, enableSendToManageMetadata, enableSequentialSigningAPI, enableSequentialSigningAPIMetadata, enableSequentialSigningUI, enableSequentialSigningUIMetadata, enableSignerAttachments, enableSignerAttachmentsMetadata, enableSigningAIFeaturesPlan, enableSigningAIFeaturesPlanMetadata, enableSigningAIFeaturesSetting, enableSigningAIFeaturesSettingMetadata, enableSigningExtensionComments, enableSigningExtensionCommentsMetadata, enableSigningExtensionConversations, enableSigningExtensionConversationsMetadata, enableSigningGroupContinuePageSetting, enableSigningGroupContinuePageSettingMetadata, enableSigningOrderSettingsForAccount, enableSigningOrderSettingsForAccountMetadata, enableSignOnPaper, enableSignOnPaperMetadata, enableSignOnPaperOverride, enableSignOnPaperOverrideMetadata, enableSignWithNotary, enableSignWithNotaryMetadata, enableSmartContracts, enableSmartContractsMetadata, enableSMSAuthentication, enableSMSAuthenticationMetadata, enableSMSDeliveryAdditionalNotification, enableSMSDeliveryAdditionalNotificationMetadata, enableSMSDeliveryPrimary, enableSocialIdLogin, enableSocialIdLoginMetadata, enableStrikeThrough, enableStrikeThroughMetadata, enableTickets, enableTicketsMetaData, enableTransactionPoint, enableTransactionPointMetadata, enableUnifiedRepository, enableUnifiedRepositoryMetadata, enableVaulting, enableVaultingMetadata, enableWebFormsRuntimeAPIs, enableWebFormsRuntimeAPIsMetadata, enableWebFormsSeparateUserPermissions, enableWebFormsSeparateUserPermissionsMetadata, enableWitnessing, enableWitnessingMetadata, enableWorkdayFinancialsExtension, enableWorkdayFinancialsExtensionMetaData, enforceTemplateNameUniqueness, enforceTemplateNameUniquenessMetadata, enforceTlsEmails, enforceTlsEmailsMetadata, envelopeIntegrationAllowed, envelopeIntegrationAllowedMetadata, envelopeIntegrationEnabled, envelopeIntegrationEnabledMetadata, envelopeLimitsTotalDocumentSizeAllowedInMB, envelopeLimitsTotalDocumentSizeAllowedInMBEnabled, envelopeLimitsTotalDocumentSizeAllowedInMBEnabledMetadata, envelopeLimitsTotalDocumentSizeAllowedInMBMetadata, envelopeSearchMode, envelopeSearchModeMetadata, envelopeStampingDefaultValue, envelopeStampingDefaultValueMetadata, exitPrompt, exitPromptMetadata, expressSend, expressSendAllowTabs, expressSendAllowTabsMetadata, expressSendMetadata, externalDocumentSources, externalSignaturePadType, externalSignaturePadTypeMetadata, faxOutEnabled, faxOutEnabledMetadata, finishReminder, finishReminderMetadata, forbidAddingUserStamps, forbidAddingUserStampsMetadata, guidedFormsHtmlAllowed, guidedFormsHtmlAllowedMetadata, guidedFormsHtmlConversionPolicy, guidedFormsHtmlConversionPolicyMetadata, hasRecipientConnectClaimedDomain, hideAccountAddressInCoC, hideAccountAddressInCoCMetadata, hidePricing, hidePricingMetadata, idCheckConfigurations, idCheckExpire, idCheckExpireDays, idCheckExpireDaysMetadata, idCheckExpireMetadata, idCheckExpireMinutes, idCheckExpireMinutesMetadata, idCheckRequired, idCheckRequiredMetadata, identityVerification, identityVerificationMetadata, idfxKBAAuthenticationOverride, idfxKBAAuthenticationOverrideMetadata, idfxPhoneAuthenticationOverride, idfxPhoneAuthenticationOverrideMetadata, ignoreErrorIfAnchorTabNotFound, ignoreErrorIfAnchorTabNotFoundMetadataEnabled, inPersonIDCheckQuestion, inPersonIDCheckQuestionMetadata, inPersonSigningEnabled, inPersonSigningEnabledMetadata, inSessionEnabled, inSessionEnabledMetadata, inSessionSuppressEmails, inSessionSuppressEmailsMetadata, isConnectDocumentFieldsEnabled, isvEmbed, isvEmbedMetaData, isvOemEmbed, isvOemEmbedMetaData, linkedExternalPrimaryAccounts, maestroPlanLevels, maestroPlanLevelsMetadata, maximumSigningGroups, maximumSigningGroupsMetadata, maximumUsersPerSigningGroup, maximumUsersPerSigningGroupMetadata, maxNumberOfCustomStamps, mergeMixedModeResults, mergeMixedModeResultsMetadata, mobileSessionTimeout, mobileSessionTimeoutMetadata, numberOfActiveCustomStamps, optInMobileSigningV02, optInMobileSigningV02Metadata, optInUniversalSignatures, optOutAutoNavTextAndTabColorUpdates, optOutAutoNavTextAndTabColorUpdatesMetadata, optOutNewPlatformSeal, optOutNewPlatformSealPlatformMetadata, originalAccountSite, participantCopyOptOut, participantCopyOptOutMetadata, pdfMaxChunkedUploadPartSize, pdfMaxChunkedUploadPartSizeMetadata, pdfMaxChunkedUploadTotalSize, pdfMaxChunkedUploadTotalSizeMetadata, pdfMaxIndividualUploadSize, pdfMaxIndividualUploadSizeMetadata, phoneAuthRecipientMayProvidePhoneNumber, phoneAuthRecipientMayProvidePhoneNumberMetadata, pkiSignDownloadedPDFDocs, pkiSignDownloadedPDFDocsMetadata, readOnlyMode, readOnlyModeMetadata, recipientsCanSignOffline, recipientsCanSignOfflineMetadata, recipientSigningAutoNavigationControl, recipientSigningAutoNavigationControlMetadata, recycleBinEnvelopeRetention, recycleBinEnvelopeRetentionMetadata, require21CFRpt11Compliance, require21CFRpt11ComplianceMetadata, requireDeclineReason, requireDeclineReasonMetadata, requireExternalUserManagement, requireExternalUserManagementMetadata, requireSignerCertificateType, requireSignerCertificateTypeMetadata, rsaVeridAccountName, rsaVeridPassword, rsaVeridRuleset, rsaVeridUserId, selfSignedRecipientEmailDocument, selfSignedRecipientEmailDocumentMetadata, selfSignedRecipientEmailDocumentUserOverride, selfSignedRecipientEmailDocumentUserOverrideMetadata, senderCanSignInEachLocation, senderCanSignInEachLocationMetadata, senderMustAuthenticateSigning, senderMustAuthenticateSigningMetadata, sendingTagsFontColor, sendingTagsFontColorMetadata, sendingTagsFontName, sendingTagsFontNameMetadata, sendingTagsFontSize, sendingTagsFontSizeMetadata, sendLockoutRecipientNotification, sendLockoutRecipientNotificationMetadata, sendToCertifiedDeliveryEnabled, sendToCertifiedDeliveryEnabledMetadata, sessionTimeout, sessionTimeoutMetadata, setRecipEmailLang, setRecipEmailLangMetadata, setRecipSignLang, setRecipSignLangMetadata, sharedTemplateFolders, sharedTemplateFoldersMetadata, showCompleteDialogInEmbeddedSession, showCompleteDialogInEmbeddedSessionMetadata, showConditionalRoutingOnSend, showConditionalRoutingOnSendMetadata, showInitialConditionalFields, showInitialConditionalFieldsMetadata, showLocalizedWatermarks, showLocalizedWatermarksMetadata, showMaskedFieldsWhenDownloadingDocumentAsSender, showMaskedFieldsWhenDownloadingDocumentAsSenderMetadata, showTutorials, showTutorialsMetadata, signatureProviders, signatureProvidersMetadata, signDateFormat, signDateFormatMetadata, signDateTimeAccountLanguageOverride, signDateTimeAccountLanguageOverrideMetadata, signDateTimeAccountTimezoneOverride, signDateTimeAccountTimezoneOverrideMetadata, signerAttachCertificateToEnvelopePDF, signerAttachCertificateToEnvelopePDFMetadata, signerAttachConcat, signerAttachConcatMetadata, signerCanCreateAccount, signerCanCreateAccountMetadata, signerCanSignOnMobile, signerCanSignOnMobileMetadata, signerInSessionUseEnvelopeCompleteEmail, signerInSessionUseEnvelopeCompleteEmailMetadata, signerLoginRequirements, signerLoginRequirementsMetadata, signerMustHaveAccount, signerMustHaveAccountMetadata, signerMustLoginToSign, signerMustLoginToSignMetadata, signerShowSecureFieldInitialValues, signerShowSecureFieldInitialValuesMetadata, signingSessionTimeout, signingSessionTimeoutMetadata, signingUiVersion, signingUiVersionMetadata, signTimeFormat, signTimeFormatMetadata, signTimeShowAmPm, signTimeShowAmPmMetadata, simplifiedSendingEnabled, simplifiedSendingEnabledMetadata, singleSignOnEnabled, singleSignOnEnabledMetadata, skipAuthCompletedEnvelopes, skipAuthCompletedEnvelopesMetadata, socialIdRecipAuth, socialIdRecipAuthMetadata, specifyDocumentVisibility, specifyDocumentVisibilityMetadata, startInAdvancedCorrect, startInAdvancedCorrectMetadata, supplementalDocumentsMustAccept, supplementalDocumentsMustAcceptMetadata, supplementalDocumentsMustRead, supplementalDocumentsMustReadMetadata, supplementalDocumentsMustView, supplementalDocumentsMustViewMetadata, suppressCertificateEnforcement, suppressCertificateEnforcementMetadata, tabAccountSettings, timezoneOffsetAPI, timezoneOffsetAPIMetadata, timezoneOffsetUI, timezoneOffsetUIMetadata, universalSignatureOptIn, universalSignatureSkipPlatformSignature, universalSignatureSkipPlatformSignatureMetadata, useAccountLevelEmail, useAccountLevelEmailMetadata, useConsumerDisclosure, useConsumerDisclosureMetadata, useConsumerDisclosureWithinAccount, useConsumerDisclosureWithinAccountMetadata, useDerivedKeys, useDerivedKeysMetadata, useDocuSignExpressSignerCertificate, useDocuSignExpressSignerCertificateMetadata, useEnvelopeSearchMixedMode, useEnvelopeSearchMixedModeMetadata, useMultiAppGroupsData, useMultiAppGroupsDataMetadata, useNewBlobForPdf, useNewBlobForPdfMetadata, useNewEnvelopeSearch, useNewEnvelopeSearchMetadata, useNewEnvelopeSearchOnlyWhenSearchingAfterDate, useNewEnvelopeSearchOnlyWhenSearchingAfterDateMetadata, useNewEnvelopeSearchOnlyWithSearchTerm, useNewEnvelopeSearchOnlyWithSearchTermMetadata, useSAFESignerCertificates, useSAFESignerCertificatesMetadata, usesAPI, usesAPIMetadata, useSignatureProviderPlatform, useSignatureProviderPlatformMetadata, useSmartContractsV1, validationsAllowed, validationsAllowedMetadata, validationsBrand, validationsBrandMetadata, validationsCadence, validationsCadenceMetadata, validationsEnabled, validationsEnabledMetadata, validationsReport, validationsReportMetadata, waterMarkEnabled, waterMarkEnabledMetadata, writeReminderToEnvelopeHistory, writeReminderToEnvelopeHistoryMetadata, wurflMinAllowableScreenSize, wurflMinAllowableScreenSizeMetadata);
}
@@ -26076,6 +26200,8 @@ public String toString() {
sb.append(" allowIDVLevel3Metadata: ").append(toIndentedString(allowIDVLevel3Metadata)).append("\n");
sb.append(" allowIDVPlatform: ").append(toIndentedString(allowIDVPlatform)).append("\n");
sb.append(" allowIDVPlatformMetadata: ").append(toIndentedString(allowIDVPlatformMetadata)).append("\n");
+ sb.append(" allowIdvRiskAssessment: ").append(toIndentedString(allowIdvRiskAssessment)).append("\n");
+ sb.append(" allowIdvRiskAssessmentMetadata: ").append(toIndentedString(allowIdvRiskAssessmentMetadata)).append("\n");
sb.append(" allowInPerson: ").append(toIndentedString(allowInPerson)).append("\n");
sb.append(" allowInPersonElectronicNotary: ").append(toIndentedString(allowInPersonElectronicNotary)).append("\n");
sb.append(" allowInPersonElectronicNotaryMetadata: ").append(toIndentedString(allowInPersonElectronicNotaryMetadata)).append("\n");
@@ -26441,6 +26567,8 @@ public String toString() {
sb.append(" enableNavigatorPartialIngestionMetadata: ").append(toIndentedString(enableNavigatorPartialIngestionMetadata)).append("\n");
sb.append(" enableNavigatorTrial: ").append(toIndentedString(enableNavigatorTrial)).append("\n");
sb.append(" enableNavigatorTrialMetadata: ").append(toIndentedString(enableNavigatorTrialMetadata)).append("\n");
+ sb.append(" enableNotaryOnDemandWitness: ").append(toIndentedString(enableNotaryOnDemandWitness)).append("\n");
+ sb.append(" enableNotaryOnDemandWitnessMetadata: ").append(toIndentedString(enableNotaryOnDemandWitnessMetadata)).append("\n");
sb.append(" enableObligationManagement: ").append(toIndentedString(enableObligationManagement)).append("\n");
sb.append(" enableObligationManagementMetadata: ").append(toIndentedString(enableObligationManagementMetadata)).append("\n");
sb.append(" enableParticipantRecipientSettingMetadata: ").append(toIndentedString(enableParticipantRecipientSettingMetadata)).append("\n");
diff --git a/src/main/java/com/docusign/esign/model/NotaryWitness.java b/src/main/java/com/docusign/esign/model/NotaryWitness.java
new file mode 100644
index 00000000..115086cf
--- /dev/null
+++ b/src/main/java/com/docusign/esign/model/NotaryWitness.java
@@ -0,0 +1,3530 @@
+package com.docusign.esign.model;
+
+import java.util.Objects;
+import java.util.Arrays;
+import com.docusign.esign.model.AuthenticationStatus;
+import com.docusign.esign.model.ConsentDetails;
+import com.docusign.esign.model.DelegationInfo;
+import com.docusign.esign.model.DocumentVisibility;
+import com.docusign.esign.model.ErrorDetails;
+import com.docusign.esign.model.FeatureAvailableMetadata;
+import com.docusign.esign.model.IdCheckInformationInput;
+import com.docusign.esign.model.OfflineAttributes;
+import com.docusign.esign.model.PropertyMetadata;
+import com.docusign.esign.model.RecipientAdditionalNotification;
+import com.docusign.esign.model.RecipientAttachment;
+import com.docusign.esign.model.RecipientEmailNotification;
+import com.docusign.esign.model.RecipientIdentityVerification;
+import com.docusign.esign.model.RecipientPhoneAuthentication;
+import com.docusign.esign.model.RecipientPhoneNumber;
+import com.docusign.esign.model.RecipientProofFile;
+import com.docusign.esign.model.RecipientSMSAuthentication;
+import com.docusign.esign.model.RecipientSignatureInformation;
+import com.docusign.esign.model.RecipientSignatureProvider;
+import com.docusign.esign.model.SocialAuthentication;
+import com.docusign.esign.model.Tabs;
+import com.docusign.esign.model.UserInfo;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonValue;
+import io.swagger.v3.oas.annotations.media.Schema;
+import java.io.Serializable;
+
+/**
+ * NotaryWitness.
+ *
+ */
+
+public class NotaryWitness implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ @JsonProperty("accessCode")
+ private String accessCode = null;
+
+ @JsonProperty("accessCodeMetadata")
+ private PropertyMetadata accessCodeMetadata = null;
+
+ @JsonProperty("addAccessCodeToEmail")
+ private String addAccessCodeToEmail = null;
+
+ @JsonProperty("additionalNotifications")
+ private java.util.List additionalNotifications = null;
+
+ @JsonProperty("agentCanEditEmail")
+ private String agentCanEditEmail = null;
+
+ @JsonProperty("agentCanEditName")
+ private String agentCanEditName = null;
+
+ @JsonProperty("allowSystemOverrideForLockedRecipient")
+ private String allowSystemOverrideForLockedRecipient = null;
+
+ @JsonProperty("autoNavigation")
+ private String autoNavigation = null;
+
+ @JsonProperty("autoRespondedReason")
+ private String autoRespondedReason = null;
+
+ @JsonProperty("bulkRecipientsUri")
+ private String bulkRecipientsUri = null;
+
+ @JsonProperty("bulkSendV2Recipient")
+ private String bulkSendV2Recipient = null;
+
+ @JsonProperty("canSignOffline")
+ private String canSignOffline = null;
+
+ @JsonProperty("clientUserId")
+ private String clientUserId = null;
+
+ @JsonProperty("completedCount")
+ private String completedCount = null;
+
+ @JsonProperty("consentDetailsList")
+ private java.util.List consentDetailsList = null;
+
+ @JsonProperty("creationReason")
+ private String creationReason = null;
+
+ @JsonProperty("customFields")
+ private java.util.List customFields = null;
+
+ @JsonProperty("declinedDateTime")
+ private String declinedDateTime = null;
+
+ @JsonProperty("declinedReason")
+ private String declinedReason = null;
+
+ @JsonProperty("defaultRecipient")
+ private String defaultRecipient = null;
+
+ @JsonProperty("delegatedBy")
+ private DelegationInfo delegatedBy = null;
+
+ @JsonProperty("delegatedTo")
+ private java.util.List delegatedTo = null;
+
+ @JsonProperty("deliveredDateTime")
+ private String deliveredDateTime = null;
+
+ @JsonProperty("deliveryMethod")
+ private String deliveryMethod = null;
+
+ @JsonProperty("deliveryMethodMetadata")
+ private PropertyMetadata deliveryMethodMetadata = null;
+
+ @JsonProperty("designatorId")
+ private String designatorId = null;
+
+ @JsonProperty("designatorIdGuid")
+ private String designatorIdGuid = null;
+
+ @JsonProperty("documentTemplateId")
+ private String documentTemplateId = null;
+
+ @JsonProperty("documentVisibility")
+ private java.util.List documentVisibility = null;
+
+ @JsonProperty("email")
+ private String email = null;
+
+ @JsonProperty("emailMetadata")
+ private PropertyMetadata emailMetadata = null;
+
+ @JsonProperty("emailNotification")
+ private RecipientEmailNotification emailNotification = null;
+
+ @JsonProperty("emailRecipientPostSigningURL")
+ private String emailRecipientPostSigningURL = null;
+
+ @JsonProperty("embeddedRecipientStartURL")
+ private String embeddedRecipientStartURL = null;
+
+ @JsonProperty("errorDetails")
+ private ErrorDetails errorDetails = null;
+
+ @JsonProperty("excludedDocuments")
+ private java.util.List excludedDocuments = null;
+
+ @JsonProperty("faxNumber")
+ private String faxNumber = null;
+
+ @JsonProperty("faxNumberMetadata")
+ private PropertyMetadata faxNumberMetadata = null;
+
+ @JsonProperty("firstName")
+ private String firstName = null;
+
+ @JsonProperty("firstNameMetadata")
+ private PropertyMetadata firstNameMetadata = null;
+
+ @JsonProperty("fullName")
+ private String fullName = null;
+
+ @JsonProperty("fullNameMetadata")
+ private PropertyMetadata fullNameMetadata = null;
+
+ @JsonProperty("idCheckConfigurationName")
+ private String idCheckConfigurationName = null;
+
+ @JsonProperty("idCheckConfigurationNameMetadata")
+ private PropertyMetadata idCheckConfigurationNameMetadata = null;
+
+ @JsonProperty("idCheckInformationInput")
+ private IdCheckInformationInput idCheckInformationInput = null;
+
+ @JsonProperty("identityVerification")
+ private RecipientIdentityVerification identityVerification = null;
+
+ @JsonProperty("inheritEmailNotificationConfiguration")
+ private String inheritEmailNotificationConfiguration = null;
+
+ @JsonProperty("isBulkRecipient")
+ private String isBulkRecipient = null;
+
+ @JsonProperty("isBulkRecipientMetadata")
+ private PropertyMetadata isBulkRecipientMetadata = null;
+
+ @JsonProperty("lastName")
+ private String lastName = null;
+
+ @JsonProperty("lastNameMetadata")
+ private PropertyMetadata lastNameMetadata = null;
+
+ @JsonProperty("lockedRecipientPhoneAuthEditable")
+ private String lockedRecipientPhoneAuthEditable = null;
+
+ @JsonProperty("lockedRecipientSmsEditable")
+ private String lockedRecipientSmsEditable = null;
+
+ @JsonProperty("name")
+ private String name = null;
+
+ @JsonProperty("nameMetadata")
+ private PropertyMetadata nameMetadata = null;
+
+ @JsonProperty("notaryId")
+ private String notaryId = null;
+
+ @JsonProperty("notarySignerEmailSent")
+ private String notarySignerEmailSent = null;
+
+ @JsonProperty("note")
+ private String note = null;
+
+ @JsonProperty("noteMetadata")
+ private PropertyMetadata noteMetadata = null;
+
+ @JsonProperty("offlineAttributes")
+ private OfflineAttributes offlineAttributes = null;
+
+ @JsonProperty("phoneAuthentication")
+ private RecipientPhoneAuthentication phoneAuthentication = null;
+
+ @JsonProperty("phoneNumber")
+ private RecipientPhoneNumber phoneNumber = null;
+
+ @JsonProperty("proofFile")
+ private RecipientProofFile proofFile = null;
+
+ @JsonProperty("recipientAttachments")
+ private java.util.List recipientAttachments = null;
+
+ @JsonProperty("recipientAuthenticationStatus")
+ private AuthenticationStatus recipientAuthenticationStatus = null;
+
+ @JsonProperty("recipientFeatureMetadata")
+ private java.util.List recipientFeatureMetadata = null;
+
+ @JsonProperty("recipientId")
+ private String recipientId = null;
+
+ @JsonProperty("recipientIdGuid")
+ private String recipientIdGuid = null;
+
+ @JsonProperty("recipientSignatureProviders")
+ private java.util.List recipientSignatureProviders = null;
+
+ @JsonProperty("recipientSuppliesTabs")
+ private String recipientSuppliesTabs = null;
+
+ @JsonProperty("recipientType")
+ private String recipientType = null;
+
+ @JsonProperty("recipientTypeMetadata")
+ private PropertyMetadata recipientTypeMetadata = null;
+
+ @JsonProperty("requireIdLookup")
+ private String requireIdLookup = null;
+
+ @JsonProperty("requireIdLookupMetadata")
+ private PropertyMetadata requireIdLookupMetadata = null;
+
+ @JsonProperty("requireSignerCertificate")
+ private String requireSignerCertificate = null;
+
+ @JsonProperty("requireSignOnPaper")
+ private String requireSignOnPaper = null;
+
+ @JsonProperty("requireUploadSignature")
+ private String requireUploadSignature = null;
+
+ @JsonProperty("roleName")
+ private String roleName = null;
+
+ @JsonProperty("routingOrder")
+ private String routingOrder = null;
+
+ @JsonProperty("routingOrderMetadata")
+ private PropertyMetadata routingOrderMetadata = null;
+
+ @JsonProperty("sentDateTime")
+ private String sentDateTime = null;
+
+ @JsonProperty("signatureInfo")
+ private RecipientSignatureInformation signatureInfo = null;
+
+ @JsonProperty("signedDateTime")
+ private String signedDateTime = null;
+
+ @JsonProperty("signInEachLocation")
+ private String signInEachLocation = null;
+
+ @JsonProperty("signInEachLocationMetadata")
+ private PropertyMetadata signInEachLocationMetadata = null;
+
+ @JsonProperty("signingGroupId")
+ private String signingGroupId = null;
+
+ @JsonProperty("signingGroupIdMetadata")
+ private PropertyMetadata signingGroupIdMetadata = null;
+
+ @JsonProperty("signingGroupName")
+ private String signingGroupName = null;
+
+ @JsonProperty("signingGroupUsers")
+ private java.util.List signingGroupUsers = null;
+
+ @JsonProperty("smsAuthentication")
+ private RecipientSMSAuthentication smsAuthentication = null;
+
+ @JsonProperty("socialAuthentications")
+ private java.util.List socialAuthentications = null;
+
+ @JsonProperty("status")
+ private String status = null;
+
+ @JsonProperty("statusCode")
+ private String statusCode = null;
+
+ @JsonProperty("suppressEmails")
+ private String suppressEmails = null;
+
+ @JsonProperty("tabs")
+ private Tabs tabs = null;
+
+ @JsonProperty("templateLocked")
+ private String templateLocked = null;
+
+ @JsonProperty("templateRequired")
+ private String templateRequired = null;
+
+ @JsonProperty("totalTabCount")
+ private String totalTabCount = null;
+
+ @JsonProperty("type")
+ private String type = null;
+
+ @JsonProperty("userId")
+ private String userId = null;
+
+ @JsonProperty("webFormRecipientViewId")
+ private String webFormRecipientViewId = null;
+
+ @JsonProperty("witnessFor")
+ private String witnessFor = null;
+
+ @JsonProperty("witnessForGuid")
+ private String witnessForGuid = null;
+
+
+ /**
+ * accessCode.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness accessCode(String accessCode) {
+ this.accessCode = accessCode;
+ return this;
+ }
+
+ /**
+ * If a value is provided, the recipient must enter the value as the access code to view and sign the envelope. Maximum Length: 50 characters and it must conform to the account's access code format setting. If blank, but the signer `accessCode` property is set in the envelope, then that value is used. If blank and the signer `accessCode` property is not set, then the access code is not required..
+ * @return accessCode
+ **/
+ @Schema(description = "If a value is provided, the recipient must enter the value as the access code to view and sign the envelope. Maximum Length: 50 characters and it must conform to the account's access code format setting. If blank, but the signer `accessCode` property is set in the envelope, then that value is used. If blank and the signer `accessCode` property is not set, then the access code is not required.")
+ public String getAccessCode() {
+ return accessCode;
+ }
+
+ /**
+ * setAccessCode.
+ **/
+ public void setAccessCode(String accessCode) {
+ this.accessCode = accessCode;
+ }
+
+
+ /**
+ * accessCodeMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness accessCodeMetadata(PropertyMetadata accessCodeMetadata) {
+ this.accessCodeMetadata = accessCodeMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return accessCodeMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getAccessCodeMetadata() {
+ return accessCodeMetadata;
+ }
+
+ /**
+ * setAccessCodeMetadata.
+ **/
+ public void setAccessCodeMetadata(PropertyMetadata accessCodeMetadata) {
+ this.accessCodeMetadata = accessCodeMetadata;
+ }
+
+
+ /**
+ * addAccessCodeToEmail.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness addAccessCodeToEmail(String addAccessCodeToEmail) {
+ this.addAccessCodeToEmail = addAccessCodeToEmail;
+ return this;
+ }
+
+ /**
+ * This Optional attribute indicates that the access code will be added to the email sent to the recipient; this nullifies the Security measure of Access Code on the recipient..
+ * @return addAccessCodeToEmail
+ **/
+ @Schema(description = "This Optional attribute indicates that the access code will be added to the email sent to the recipient; this nullifies the Security measure of Access Code on the recipient.")
+ public String getAddAccessCodeToEmail() {
+ return addAccessCodeToEmail;
+ }
+
+ /**
+ * setAddAccessCodeToEmail.
+ **/
+ public void setAddAccessCodeToEmail(String addAccessCodeToEmail) {
+ this.addAccessCodeToEmail = addAccessCodeToEmail;
+ }
+
+
+ /**
+ * additionalNotifications.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness additionalNotifications(java.util.List additionalNotifications) {
+ this.additionalNotifications = additionalNotifications;
+ return this;
+ }
+
+ /**
+ * addAdditionalNotificationsItem.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness addAdditionalNotificationsItem(RecipientAdditionalNotification additionalNotificationsItem) {
+ if (this.additionalNotifications == null) {
+ this.additionalNotifications = new java.util.ArrayList<>();
+ }
+ this.additionalNotifications.add(additionalNotificationsItem);
+ return this;
+ }
+
+ /**
+ * .
+ * @return additionalNotifications
+ **/
+ @Schema(description = "")
+ public java.util.List getAdditionalNotifications() {
+ return additionalNotifications;
+ }
+
+ /**
+ * setAdditionalNotifications.
+ **/
+ public void setAdditionalNotifications(java.util.List additionalNotifications) {
+ this.additionalNotifications = additionalNotifications;
+ }
+
+
+ /**
+ * agentCanEditEmail.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness agentCanEditEmail(String agentCanEditEmail) {
+ this.agentCanEditEmail = agentCanEditEmail;
+ return this;
+ }
+
+ /**
+ * .
+ * @return agentCanEditEmail
+ **/
+ @Schema(description = "")
+ public String getAgentCanEditEmail() {
+ return agentCanEditEmail;
+ }
+
+ /**
+ * setAgentCanEditEmail.
+ **/
+ public void setAgentCanEditEmail(String agentCanEditEmail) {
+ this.agentCanEditEmail = agentCanEditEmail;
+ }
+
+
+ /**
+ * agentCanEditName.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness agentCanEditName(String agentCanEditName) {
+ this.agentCanEditName = agentCanEditName;
+ return this;
+ }
+
+ /**
+ * .
+ * @return agentCanEditName
+ **/
+ @Schema(description = "")
+ public String getAgentCanEditName() {
+ return agentCanEditName;
+ }
+
+ /**
+ * setAgentCanEditName.
+ **/
+ public void setAgentCanEditName(String agentCanEditName) {
+ this.agentCanEditName = agentCanEditName;
+ }
+
+
+ /**
+ * allowSystemOverrideForLockedRecipient.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness allowSystemOverrideForLockedRecipient(String allowSystemOverrideForLockedRecipient) {
+ this.allowSystemOverrideForLockedRecipient = allowSystemOverrideForLockedRecipient;
+ return this;
+ }
+
+ /**
+ * .
+ * @return allowSystemOverrideForLockedRecipient
+ **/
+ @Schema(description = "")
+ public String getAllowSystemOverrideForLockedRecipient() {
+ return allowSystemOverrideForLockedRecipient;
+ }
+
+ /**
+ * setAllowSystemOverrideForLockedRecipient.
+ **/
+ public void setAllowSystemOverrideForLockedRecipient(String allowSystemOverrideForLockedRecipient) {
+ this.allowSystemOverrideForLockedRecipient = allowSystemOverrideForLockedRecipient;
+ }
+
+
+ /**
+ * autoNavigation.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness autoNavigation(String autoNavigation) {
+ this.autoNavigation = autoNavigation;
+ return this;
+ }
+
+ /**
+ * .
+ * @return autoNavigation
+ **/
+ @Schema(description = "")
+ public String getAutoNavigation() {
+ return autoNavigation;
+ }
+
+ /**
+ * setAutoNavigation.
+ **/
+ public void setAutoNavigation(String autoNavigation) {
+ this.autoNavigation = autoNavigation;
+ }
+
+
+ /**
+ * autoRespondedReason.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness autoRespondedReason(String autoRespondedReason) {
+ this.autoRespondedReason = autoRespondedReason;
+ return this;
+ }
+
+ /**
+ * .
+ * @return autoRespondedReason
+ **/
+ @Schema(description = "")
+ public String getAutoRespondedReason() {
+ return autoRespondedReason;
+ }
+
+ /**
+ * setAutoRespondedReason.
+ **/
+ public void setAutoRespondedReason(String autoRespondedReason) {
+ this.autoRespondedReason = autoRespondedReason;
+ }
+
+
+ /**
+ * bulkRecipientsUri.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness bulkRecipientsUri(String bulkRecipientsUri) {
+ this.bulkRecipientsUri = bulkRecipientsUri;
+ return this;
+ }
+
+ /**
+ * Contains a URI for an endpoint that allows you to easily retrieve bulk recipient information..
+ * @return bulkRecipientsUri
+ **/
+ @Schema(description = "Contains a URI for an endpoint that allows you to easily retrieve bulk recipient information.")
+ public String getBulkRecipientsUri() {
+ return bulkRecipientsUri;
+ }
+
+ /**
+ * setBulkRecipientsUri.
+ **/
+ public void setBulkRecipientsUri(String bulkRecipientsUri) {
+ this.bulkRecipientsUri = bulkRecipientsUri;
+ }
+
+
+ /**
+ * bulkSendV2Recipient.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness bulkSendV2Recipient(String bulkSendV2Recipient) {
+ this.bulkSendV2Recipient = bulkSendV2Recipient;
+ return this;
+ }
+
+ /**
+ * .
+ * @return bulkSendV2Recipient
+ **/
+ @Schema(description = "")
+ public String getBulkSendV2Recipient() {
+ return bulkSendV2Recipient;
+ }
+
+ /**
+ * setBulkSendV2Recipient.
+ **/
+ public void setBulkSendV2Recipient(String bulkSendV2Recipient) {
+ this.bulkSendV2Recipient = bulkSendV2Recipient;
+ }
+
+
+ /**
+ * canSignOffline.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness canSignOffline(String canSignOffline) {
+ this.canSignOffline = canSignOffline;
+ return this;
+ }
+
+ /**
+ * When set to **true**, specifies that the signer can perform the signing ceremony offline..
+ * @return canSignOffline
+ **/
+ @Schema(description = "When set to **true**, specifies that the signer can perform the signing ceremony offline.")
+ public String getCanSignOffline() {
+ return canSignOffline;
+ }
+
+ /**
+ * setCanSignOffline.
+ **/
+ public void setCanSignOffline(String canSignOffline) {
+ this.canSignOffline = canSignOffline;
+ }
+
+
+ /**
+ * clientUserId.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness clientUserId(String clientUserId) {
+ this.clientUserId = clientUserId;
+ return this;
+ }
+
+ /**
+ * Specifies whether the recipient is embedded or remote. If the `clientUserId` property is not null then the recipient is embedded. Note that if the `ClientUserId` property is set and either `SignerMustHaveAccount` or `SignerMustLoginToSign` property of the account settings is set to **true**, an error is generated on sending.ng. Maximum length: 100 characters. .
+ * @return clientUserId
+ **/
+ @Schema(description = "Specifies whether the recipient is embedded or remote. If the `clientUserId` property is not null then the recipient is embedded. Note that if the `ClientUserId` property is set and either `SignerMustHaveAccount` or `SignerMustLoginToSign` property of the account settings is set to **true**, an error is generated on sending.ng. Maximum length: 100 characters. ")
+ public String getClientUserId() {
+ return clientUserId;
+ }
+
+ /**
+ * setClientUserId.
+ **/
+ public void setClientUserId(String clientUserId) {
+ this.clientUserId = clientUserId;
+ }
+
+
+ /**
+ * completedCount.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness completedCount(String completedCount) {
+ this.completedCount = completedCount;
+ return this;
+ }
+
+ /**
+ * .
+ * @return completedCount
+ **/
+ @Schema(description = "")
+ public String getCompletedCount() {
+ return completedCount;
+ }
+
+ /**
+ * setCompletedCount.
+ **/
+ public void setCompletedCount(String completedCount) {
+ this.completedCount = completedCount;
+ }
+
+
+ /**
+ * consentDetailsList.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness consentDetailsList(java.util.List consentDetailsList) {
+ this.consentDetailsList = consentDetailsList;
+ return this;
+ }
+
+ /**
+ * addConsentDetailsListItem.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness addConsentDetailsListItem(ConsentDetails consentDetailsListItem) {
+ if (this.consentDetailsList == null) {
+ this.consentDetailsList = new java.util.ArrayList<>();
+ }
+ this.consentDetailsList.add(consentDetailsListItem);
+ return this;
+ }
+
+ /**
+ * .
+ * @return consentDetailsList
+ **/
+ @Schema(description = "")
+ public java.util.List getConsentDetailsList() {
+ return consentDetailsList;
+ }
+
+ /**
+ * setConsentDetailsList.
+ **/
+ public void setConsentDetailsList(java.util.List consentDetailsList) {
+ this.consentDetailsList = consentDetailsList;
+ }
+
+
+ /**
+ * creationReason.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness creationReason(String creationReason) {
+ this.creationReason = creationReason;
+ return this;
+ }
+
+ /**
+ * .
+ * @return creationReason
+ **/
+ @Schema(description = "")
+ public String getCreationReason() {
+ return creationReason;
+ }
+
+ /**
+ * setCreationReason.
+ **/
+ public void setCreationReason(String creationReason) {
+ this.creationReason = creationReason;
+ }
+
+
+ /**
+ * customFields.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness customFields(java.util.List customFields) {
+ this.customFields = customFields;
+ return this;
+ }
+
+ /**
+ * addCustomFieldsItem.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness addCustomFieldsItem(String customFieldsItem) {
+ if (this.customFields == null) {
+ this.customFields = new java.util.ArrayList<>();
+ }
+ this.customFields.add(customFieldsItem);
+ return this;
+ }
+
+ /**
+ * An optional array of strings that allows the sender to provide custom data about the recipient. This information is returned in the envelope status but otherwise not used by DocuSign. Each customField string can be a maximum of 100 characters..
+ * @return customFields
+ **/
+ @Schema(description = "An optional array of strings that allows the sender to provide custom data about the recipient. This information is returned in the envelope status but otherwise not used by DocuSign. Each customField string can be a maximum of 100 characters.")
+ public java.util.List getCustomFields() {
+ return customFields;
+ }
+
+ /**
+ * setCustomFields.
+ **/
+ public void setCustomFields(java.util.List customFields) {
+ this.customFields = customFields;
+ }
+
+
+ /**
+ * declinedDateTime.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness declinedDateTime(String declinedDateTime) {
+ this.declinedDateTime = declinedDateTime;
+ return this;
+ }
+
+ /**
+ * The date and time the recipient declined the document..
+ * @return declinedDateTime
+ **/
+ @Schema(description = "The date and time the recipient declined the document.")
+ public String getDeclinedDateTime() {
+ return declinedDateTime;
+ }
+
+ /**
+ * setDeclinedDateTime.
+ **/
+ public void setDeclinedDateTime(String declinedDateTime) {
+ this.declinedDateTime = declinedDateTime;
+ }
+
+
+ /**
+ * declinedReason.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness declinedReason(String declinedReason) {
+ this.declinedReason = declinedReason;
+ return this;
+ }
+
+ /**
+ * The reason the recipient declined the document..
+ * @return declinedReason
+ **/
+ @Schema(description = "The reason the recipient declined the document.")
+ public String getDeclinedReason() {
+ return declinedReason;
+ }
+
+ /**
+ * setDeclinedReason.
+ **/
+ public void setDeclinedReason(String declinedReason) {
+ this.declinedReason = declinedReason;
+ }
+
+
+ /**
+ * defaultRecipient.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness defaultRecipient(String defaultRecipient) {
+ this.defaultRecipient = defaultRecipient;
+ return this;
+ }
+
+ /**
+ * .
+ * @return defaultRecipient
+ **/
+ @Schema(description = "")
+ public String getDefaultRecipient() {
+ return defaultRecipient;
+ }
+
+ /**
+ * setDefaultRecipient.
+ **/
+ public void setDefaultRecipient(String defaultRecipient) {
+ this.defaultRecipient = defaultRecipient;
+ }
+
+
+ /**
+ * delegatedBy.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness delegatedBy(DelegationInfo delegatedBy) {
+ this.delegatedBy = delegatedBy;
+ return this;
+ }
+
+ /**
+ * .
+ * @return delegatedBy
+ **/
+ @Schema(description = "")
+ public DelegationInfo getDelegatedBy() {
+ return delegatedBy;
+ }
+
+ /**
+ * setDelegatedBy.
+ **/
+ public void setDelegatedBy(DelegationInfo delegatedBy) {
+ this.delegatedBy = delegatedBy;
+ }
+
+
+ /**
+ * delegatedTo.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness delegatedTo(java.util.List delegatedTo) {
+ this.delegatedTo = delegatedTo;
+ return this;
+ }
+
+ /**
+ * addDelegatedToItem.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness addDelegatedToItem(DelegationInfo delegatedToItem) {
+ if (this.delegatedTo == null) {
+ this.delegatedTo = new java.util.ArrayList<>();
+ }
+ this.delegatedTo.add(delegatedToItem);
+ return this;
+ }
+
+ /**
+ * .
+ * @return delegatedTo
+ **/
+ @Schema(description = "")
+ public java.util.List getDelegatedTo() {
+ return delegatedTo;
+ }
+
+ /**
+ * setDelegatedTo.
+ **/
+ public void setDelegatedTo(java.util.List delegatedTo) {
+ this.delegatedTo = delegatedTo;
+ }
+
+
+ /**
+ * deliveredDateTime.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness deliveredDateTime(String deliveredDateTime) {
+ this.deliveredDateTime = deliveredDateTime;
+ return this;
+ }
+
+ /**
+ * Reserved: For DocuSign use only..
+ * @return deliveredDateTime
+ **/
+ @Schema(description = "Reserved: For DocuSign use only.")
+ public String getDeliveredDateTime() {
+ return deliveredDateTime;
+ }
+
+ /**
+ * setDeliveredDateTime.
+ **/
+ public void setDeliveredDateTime(String deliveredDateTime) {
+ this.deliveredDateTime = deliveredDateTime;
+ }
+
+
+ /**
+ * deliveryMethod.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness deliveryMethod(String deliveryMethod) {
+ this.deliveryMethod = deliveryMethod;
+ return this;
+ }
+
+ /**
+ * Reserved: For DocuSign use only..
+ * @return deliveryMethod
+ **/
+ @Schema(description = "Reserved: For DocuSign use only.")
+ public String getDeliveryMethod() {
+ return deliveryMethod;
+ }
+
+ /**
+ * setDeliveryMethod.
+ **/
+ public void setDeliveryMethod(String deliveryMethod) {
+ this.deliveryMethod = deliveryMethod;
+ }
+
+
+ /**
+ * deliveryMethodMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness deliveryMethodMetadata(PropertyMetadata deliveryMethodMetadata) {
+ this.deliveryMethodMetadata = deliveryMethodMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return deliveryMethodMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getDeliveryMethodMetadata() {
+ return deliveryMethodMetadata;
+ }
+
+ /**
+ * setDeliveryMethodMetadata.
+ **/
+ public void setDeliveryMethodMetadata(PropertyMetadata deliveryMethodMetadata) {
+ this.deliveryMethodMetadata = deliveryMethodMetadata;
+ }
+
+
+ /**
+ * designatorId.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness designatorId(String designatorId) {
+ this.designatorId = designatorId;
+ return this;
+ }
+
+ /**
+ * .
+ * @return designatorId
+ **/
+ @Schema(description = "")
+ public String getDesignatorId() {
+ return designatorId;
+ }
+
+ /**
+ * setDesignatorId.
+ **/
+ public void setDesignatorId(String designatorId) {
+ this.designatorId = designatorId;
+ }
+
+
+ /**
+ * designatorIdGuid.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness designatorIdGuid(String designatorIdGuid) {
+ this.designatorIdGuid = designatorIdGuid;
+ return this;
+ }
+
+ /**
+ * .
+ * @return designatorIdGuid
+ **/
+ @Schema(description = "")
+ public String getDesignatorIdGuid() {
+ return designatorIdGuid;
+ }
+
+ /**
+ * setDesignatorIdGuid.
+ **/
+ public void setDesignatorIdGuid(String designatorIdGuid) {
+ this.designatorIdGuid = designatorIdGuid;
+ }
+
+
+ /**
+ * documentTemplateId.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness documentTemplateId(String documentTemplateId) {
+ this.documentTemplateId = documentTemplateId;
+ return this;
+ }
+
+ /**
+ * .
+ * @return documentTemplateId
+ **/
+ @Schema(description = "")
+ public String getDocumentTemplateId() {
+ return documentTemplateId;
+ }
+
+ /**
+ * setDocumentTemplateId.
+ **/
+ public void setDocumentTemplateId(String documentTemplateId) {
+ this.documentTemplateId = documentTemplateId;
+ }
+
+
+ /**
+ * documentVisibility.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness documentVisibility(java.util.List documentVisibility) {
+ this.documentVisibility = documentVisibility;
+ return this;
+ }
+
+ /**
+ * addDocumentVisibilityItem.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness addDocumentVisibilityItem(DocumentVisibility documentVisibilityItem) {
+ if (this.documentVisibility == null) {
+ this.documentVisibility = new java.util.ArrayList<>();
+ }
+ this.documentVisibility.add(documentVisibilityItem);
+ return this;
+ }
+
+ /**
+ * .
+ * @return documentVisibility
+ **/
+ @Schema(description = "")
+ public java.util.List getDocumentVisibility() {
+ return documentVisibility;
+ }
+
+ /**
+ * setDocumentVisibility.
+ **/
+ public void setDocumentVisibility(java.util.List documentVisibility) {
+ this.documentVisibility = documentVisibility;
+ }
+
+
+ /**
+ * email.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness email(String email) {
+ this.email = email;
+ return this;
+ }
+
+ /**
+ * .
+ * @return email
+ **/
+ @Schema(description = "")
+ public String getEmail() {
+ return email;
+ }
+
+ /**
+ * setEmail.
+ **/
+ public void setEmail(String email) {
+ this.email = email;
+ }
+
+
+ /**
+ * emailMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness emailMetadata(PropertyMetadata emailMetadata) {
+ this.emailMetadata = emailMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return emailMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getEmailMetadata() {
+ return emailMetadata;
+ }
+
+ /**
+ * setEmailMetadata.
+ **/
+ public void setEmailMetadata(PropertyMetadata emailMetadata) {
+ this.emailMetadata = emailMetadata;
+ }
+
+
+ /**
+ * emailNotification.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness emailNotification(RecipientEmailNotification emailNotification) {
+ this.emailNotification = emailNotification;
+ return this;
+ }
+
+ /**
+ * A complex type that contains information sets the language of the recipient's email information. **IMPORTANT**: If you enable email notification for one recipient, you must enable email notification for all recipients as it overrides the Envelope Subject and `EmailBlurb` property settings. .
+ * @return emailNotification
+ **/
+ @Schema(description = "A complex type that contains information sets the language of the recipient's email information. **IMPORTANT**: If you enable email notification for one recipient, you must enable email notification for all recipients as it overrides the Envelope Subject and `EmailBlurb` property settings. ")
+ public RecipientEmailNotification getEmailNotification() {
+ return emailNotification;
+ }
+
+ /**
+ * setEmailNotification.
+ **/
+ public void setEmailNotification(RecipientEmailNotification emailNotification) {
+ this.emailNotification = emailNotification;
+ }
+
+
+ /**
+ * emailRecipientPostSigningURL.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness emailRecipientPostSigningURL(String emailRecipientPostSigningURL) {
+ this.emailRecipientPostSigningURL = emailRecipientPostSigningURL;
+ return this;
+ }
+
+ /**
+ * .
+ * @return emailRecipientPostSigningURL
+ **/
+ @Schema(description = "")
+ public String getEmailRecipientPostSigningURL() {
+ return emailRecipientPostSigningURL;
+ }
+
+ /**
+ * setEmailRecipientPostSigningURL.
+ **/
+ public void setEmailRecipientPostSigningURL(String emailRecipientPostSigningURL) {
+ this.emailRecipientPostSigningURL = emailRecipientPostSigningURL;
+ }
+
+
+ /**
+ * embeddedRecipientStartURL.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness embeddedRecipientStartURL(String embeddedRecipientStartURL) {
+ this.embeddedRecipientStartURL = embeddedRecipientStartURL;
+ return this;
+ }
+
+ /**
+ * Specifies a sender provided valid URL string for redirecting an embedded recipient. When using this option, the embedded recipient still receives an email from DocuSign, just as a remote recipient would. When the document link in the email is clicked the recipient is redirected, through DocuSign, to the supplied URL to complete their actions. When routing to the URL, the sender's system (the server responding to the URL) must request a recipient token to launch a signing session. If set to `SIGN_AT_DOCUSIGN`, the recipient is directed to an embedded signing or viewing process directly at DocuSign. The signing or viewing action is initiated by the DocuSign system and the transaction activity and Certificate of Completion records will reflect this. In all other ways the process is identical to an embedded signing or viewing operation that is launched by any partner. It is important to remember that in a typical embedded workflow the authentication of an embedded recipient is the responsibility of the sending application, DocuSign expects that senders will follow their own process for establishing the recipient's identity. In this workflow the recipient goes through the sending application before the embedded signing or viewing process in initiated. However, when the sending application sets `EmbeddedRecipientStartURL=SIGN_AT_DOCUSIGN`, the recipient goes directly to the embedded signing or viewing process bypassing the sending application and any authentication steps the sending application would use. In this case, DocuSign recommends that you use one of the normal DocuSign authentication features (Access Code, Phone Authentication, SMS Authentication, etc.) to verify the identity of the recipient. If the `clientUserId` property is NOT set, and the `embeddedRecipientStartURL` is set, DocuSign will ignore the redirect URL and launch the standard signing process for the email recipient. Information can be appended to the embedded recipient start URL using merge fields. The available merge fields items are: envelopeId, recipientId, recipientName, recipientEmail, and customFields. The `customFields` property must be set fort the recipient or envelope. The merge fields are enclosed in double brackets. *Example*: `http://senderHost/[[mergeField1]]/ beginSigningSession? [[mergeField2]]&[[mergeField3]]` .
+ * @return embeddedRecipientStartURL
+ **/
+ @Schema(description = "Specifies a sender provided valid URL string for redirecting an embedded recipient. When using this option, the embedded recipient still receives an email from DocuSign, just as a remote recipient would. When the document link in the email is clicked the recipient is redirected, through DocuSign, to the supplied URL to complete their actions. When routing to the URL, the sender's system (the server responding to the URL) must request a recipient token to launch a signing session. If set to `SIGN_AT_DOCUSIGN`, the recipient is directed to an embedded signing or viewing process directly at DocuSign. The signing or viewing action is initiated by the DocuSign system and the transaction activity and Certificate of Completion records will reflect this. In all other ways the process is identical to an embedded signing or viewing operation that is launched by any partner. It is important to remember that in a typical embedded workflow the authentication of an embedded recipient is the responsibility of the sending application, DocuSign expects that senders will follow their own process for establishing the recipient's identity. In this workflow the recipient goes through the sending application before the embedded signing or viewing process in initiated. However, when the sending application sets `EmbeddedRecipientStartURL=SIGN_AT_DOCUSIGN`, the recipient goes directly to the embedded signing or viewing process bypassing the sending application and any authentication steps the sending application would use. In this case, DocuSign recommends that you use one of the normal DocuSign authentication features (Access Code, Phone Authentication, SMS Authentication, etc.) to verify the identity of the recipient. If the `clientUserId` property is NOT set, and the `embeddedRecipientStartURL` is set, DocuSign will ignore the redirect URL and launch the standard signing process for the email recipient. Information can be appended to the embedded recipient start URL using merge fields. The available merge fields items are: envelopeId, recipientId, recipientName, recipientEmail, and customFields. The `customFields` property must be set fort the recipient or envelope. The merge fields are enclosed in double brackets. *Example*: `http://senderHost/[[mergeField1]]/ beginSigningSession? [[mergeField2]]&[[mergeField3]]` ")
+ public String getEmbeddedRecipientStartURL() {
+ return embeddedRecipientStartURL;
+ }
+
+ /**
+ * setEmbeddedRecipientStartURL.
+ **/
+ public void setEmbeddedRecipientStartURL(String embeddedRecipientStartURL) {
+ this.embeddedRecipientStartURL = embeddedRecipientStartURL;
+ }
+
+
+ /**
+ * errorDetails.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness errorDetails(ErrorDetails errorDetails) {
+ this.errorDetails = errorDetails;
+ return this;
+ }
+
+ /**
+ * Array or errors..
+ * @return errorDetails
+ **/
+ @Schema(description = "Array or errors.")
+ public ErrorDetails getErrorDetails() {
+ return errorDetails;
+ }
+
+ /**
+ * setErrorDetails.
+ **/
+ public void setErrorDetails(ErrorDetails errorDetails) {
+ this.errorDetails = errorDetails;
+ }
+
+
+ /**
+ * excludedDocuments.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness excludedDocuments(java.util.List excludedDocuments) {
+ this.excludedDocuments = excludedDocuments;
+ return this;
+ }
+
+ /**
+ * addExcludedDocumentsItem.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness addExcludedDocumentsItem(String excludedDocumentsItem) {
+ if (this.excludedDocuments == null) {
+ this.excludedDocuments = new java.util.ArrayList<>();
+ }
+ this.excludedDocuments.add(excludedDocumentsItem);
+ return this;
+ }
+
+ /**
+ * Specifies the documents that are not visible to this recipient. Document Visibility must be enabled for the account and the `enforceSignerVisibility` property must be set to **true** for the envelope to use this. When enforce signer visibility is enabled, documents with tabs can only be viewed by signers that have a tab on that document. Recipients that have an administrative role (Agent, Editor, or Intermediaries) or informational role (Certified Deliveries or Carbon Copies) can always see all the documents in an envelope, unless they are specifically excluded using this setting when an envelope is sent. Documents that do not have tabs are always visible to all recipients, unless they are specifically excluded using this setting when an envelope is sent..
+ * @return excludedDocuments
+ **/
+ @Schema(description = "Specifies the documents that are not visible to this recipient. Document Visibility must be enabled for the account and the `enforceSignerVisibility` property must be set to **true** for the envelope to use this. When enforce signer visibility is enabled, documents with tabs can only be viewed by signers that have a tab on that document. Recipients that have an administrative role (Agent, Editor, or Intermediaries) or informational role (Certified Deliveries or Carbon Copies) can always see all the documents in an envelope, unless they are specifically excluded using this setting when an envelope is sent. Documents that do not have tabs are always visible to all recipients, unless they are specifically excluded using this setting when an envelope is sent.")
+ public java.util.List getExcludedDocuments() {
+ return excludedDocuments;
+ }
+
+ /**
+ * setExcludedDocuments.
+ **/
+ public void setExcludedDocuments(java.util.List excludedDocuments) {
+ this.excludedDocuments = excludedDocuments;
+ }
+
+
+ /**
+ * faxNumber.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness faxNumber(String faxNumber) {
+ this.faxNumber = faxNumber;
+ return this;
+ }
+
+ /**
+ * Reserved:.
+ * @return faxNumber
+ **/
+ @Schema(description = "Reserved:")
+ public String getFaxNumber() {
+ return faxNumber;
+ }
+
+ /**
+ * setFaxNumber.
+ **/
+ public void setFaxNumber(String faxNumber) {
+ this.faxNumber = faxNumber;
+ }
+
+
+ /**
+ * faxNumberMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness faxNumberMetadata(PropertyMetadata faxNumberMetadata) {
+ this.faxNumberMetadata = faxNumberMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return faxNumberMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getFaxNumberMetadata() {
+ return faxNumberMetadata;
+ }
+
+ /**
+ * setFaxNumberMetadata.
+ **/
+ public void setFaxNumberMetadata(PropertyMetadata faxNumberMetadata) {
+ this.faxNumberMetadata = faxNumberMetadata;
+ }
+
+
+ /**
+ * firstName.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness firstName(String firstName) {
+ this.firstName = firstName;
+ return this;
+ }
+
+ /**
+ * The user's first name. Maximum Length: 50 characters..
+ * @return firstName
+ **/
+ @Schema(description = "The user's first name. Maximum Length: 50 characters.")
+ public String getFirstName() {
+ return firstName;
+ }
+
+ /**
+ * setFirstName.
+ **/
+ public void setFirstName(String firstName) {
+ this.firstName = firstName;
+ }
+
+
+ /**
+ * firstNameMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness firstNameMetadata(PropertyMetadata firstNameMetadata) {
+ this.firstNameMetadata = firstNameMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return firstNameMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getFirstNameMetadata() {
+ return firstNameMetadata;
+ }
+
+ /**
+ * setFirstNameMetadata.
+ **/
+ public void setFirstNameMetadata(PropertyMetadata firstNameMetadata) {
+ this.firstNameMetadata = firstNameMetadata;
+ }
+
+
+ /**
+ * fullName.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness fullName(String fullName) {
+ this.fullName = fullName;
+ return this;
+ }
+
+ /**
+ * .
+ * @return fullName
+ **/
+ @Schema(description = "")
+ public String getFullName() {
+ return fullName;
+ }
+
+ /**
+ * setFullName.
+ **/
+ public void setFullName(String fullName) {
+ this.fullName = fullName;
+ }
+
+
+ /**
+ * fullNameMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness fullNameMetadata(PropertyMetadata fullNameMetadata) {
+ this.fullNameMetadata = fullNameMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return fullNameMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getFullNameMetadata() {
+ return fullNameMetadata;
+ }
+
+ /**
+ * setFullNameMetadata.
+ **/
+ public void setFullNameMetadata(PropertyMetadata fullNameMetadata) {
+ this.fullNameMetadata = fullNameMetadata;
+ }
+
+
+ /**
+ * idCheckConfigurationName.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness idCheckConfigurationName(String idCheckConfigurationName) {
+ this.idCheckConfigurationName = idCheckConfigurationName;
+ return this;
+ }
+
+ /**
+ * Specifies authentication check by name. The names used here must be the same as the authentication type names used by the account (these name can also be found in the web console sending interface in the Identify list for a recipient,) This overrides any default authentication setting. *Example*: Your account has ID Check and SMS Authentication available and in the web console Identify list these appear as 'ID Check $' and 'SMS Auth $'. To use ID check in an envelope, the idCheckConfigurationName should be 'ID Check '. If you wanted to use SMS, it would be 'SMS Auth $' and you would need to add you would need to add phone number information to the `smsAuthentication` node..
+ * @return idCheckConfigurationName
+ **/
+ @Schema(description = "Specifies authentication check by name. The names used here must be the same as the authentication type names used by the account (these name can also be found in the web console sending interface in the Identify list for a recipient,) This overrides any default authentication setting. *Example*: Your account has ID Check and SMS Authentication available and in the web console Identify list these appear as 'ID Check $' and 'SMS Auth $'. To use ID check in an envelope, the idCheckConfigurationName should be 'ID Check '. If you wanted to use SMS, it would be 'SMS Auth $' and you would need to add you would need to add phone number information to the `smsAuthentication` node.")
+ public String getIdCheckConfigurationName() {
+ return idCheckConfigurationName;
+ }
+
+ /**
+ * setIdCheckConfigurationName.
+ **/
+ public void setIdCheckConfigurationName(String idCheckConfigurationName) {
+ this.idCheckConfigurationName = idCheckConfigurationName;
+ }
+
+
+ /**
+ * idCheckConfigurationNameMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness idCheckConfigurationNameMetadata(PropertyMetadata idCheckConfigurationNameMetadata) {
+ this.idCheckConfigurationNameMetadata = idCheckConfigurationNameMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return idCheckConfigurationNameMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getIdCheckConfigurationNameMetadata() {
+ return idCheckConfigurationNameMetadata;
+ }
+
+ /**
+ * setIdCheckConfigurationNameMetadata.
+ **/
+ public void setIdCheckConfigurationNameMetadata(PropertyMetadata idCheckConfigurationNameMetadata) {
+ this.idCheckConfigurationNameMetadata = idCheckConfigurationNameMetadata;
+ }
+
+
+ /**
+ * idCheckInformationInput.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness idCheckInformationInput(IdCheckInformationInput idCheckInformationInput) {
+ this.idCheckInformationInput = idCheckInformationInput;
+ return this;
+ }
+
+ /**
+ * .
+ * @return idCheckInformationInput
+ **/
+ @Schema(description = "")
+ public IdCheckInformationInput getIdCheckInformationInput() {
+ return idCheckInformationInput;
+ }
+
+ /**
+ * setIdCheckInformationInput.
+ **/
+ public void setIdCheckInformationInput(IdCheckInformationInput idCheckInformationInput) {
+ this.idCheckInformationInput = idCheckInformationInput;
+ }
+
+
+ /**
+ * identityVerification.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness identityVerification(RecipientIdentityVerification identityVerification) {
+ this.identityVerification = identityVerification;
+ return this;
+ }
+
+ /**
+ * .
+ * @return identityVerification
+ **/
+ @Schema(description = "")
+ public RecipientIdentityVerification getIdentityVerification() {
+ return identityVerification;
+ }
+
+ /**
+ * setIdentityVerification.
+ **/
+ public void setIdentityVerification(RecipientIdentityVerification identityVerification) {
+ this.identityVerification = identityVerification;
+ }
+
+
+ /**
+ * inheritEmailNotificationConfiguration.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness inheritEmailNotificationConfiguration(String inheritEmailNotificationConfiguration) {
+ this.inheritEmailNotificationConfiguration = inheritEmailNotificationConfiguration;
+ return this;
+ }
+
+ /**
+ * When set to **true** and the envelope recipient creates a DocuSign account after signing, the Manage Account Email Notification settings are used as the default settings for the recipient's account. .
+ * @return inheritEmailNotificationConfiguration
+ **/
+ @Schema(description = "When set to **true** and the envelope recipient creates a DocuSign account after signing, the Manage Account Email Notification settings are used as the default settings for the recipient's account. ")
+ public String getInheritEmailNotificationConfiguration() {
+ return inheritEmailNotificationConfiguration;
+ }
+
+ /**
+ * setInheritEmailNotificationConfiguration.
+ **/
+ public void setInheritEmailNotificationConfiguration(String inheritEmailNotificationConfiguration) {
+ this.inheritEmailNotificationConfiguration = inheritEmailNotificationConfiguration;
+ }
+
+
+ /**
+ * isBulkRecipient.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness isBulkRecipient(String isBulkRecipient) {
+ this.isBulkRecipient = isBulkRecipient;
+ return this;
+ }
+
+ /**
+ * .
+ * @return isBulkRecipient
+ **/
+ @Schema(description = "")
+ public String getIsBulkRecipient() {
+ return isBulkRecipient;
+ }
+
+ /**
+ * setIsBulkRecipient.
+ **/
+ public void setIsBulkRecipient(String isBulkRecipient) {
+ this.isBulkRecipient = isBulkRecipient;
+ }
+
+
+ /**
+ * isBulkRecipientMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness isBulkRecipientMetadata(PropertyMetadata isBulkRecipientMetadata) {
+ this.isBulkRecipientMetadata = isBulkRecipientMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return isBulkRecipientMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getIsBulkRecipientMetadata() {
+ return isBulkRecipientMetadata;
+ }
+
+ /**
+ * setIsBulkRecipientMetadata.
+ **/
+ public void setIsBulkRecipientMetadata(PropertyMetadata isBulkRecipientMetadata) {
+ this.isBulkRecipientMetadata = isBulkRecipientMetadata;
+ }
+
+
+ /**
+ * lastName.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness lastName(String lastName) {
+ this.lastName = lastName;
+ return this;
+ }
+
+ /**
+ * .
+ * @return lastName
+ **/
+ @Schema(description = "")
+ public String getLastName() {
+ return lastName;
+ }
+
+ /**
+ * setLastName.
+ **/
+ public void setLastName(String lastName) {
+ this.lastName = lastName;
+ }
+
+
+ /**
+ * lastNameMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness lastNameMetadata(PropertyMetadata lastNameMetadata) {
+ this.lastNameMetadata = lastNameMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return lastNameMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getLastNameMetadata() {
+ return lastNameMetadata;
+ }
+
+ /**
+ * setLastNameMetadata.
+ **/
+ public void setLastNameMetadata(PropertyMetadata lastNameMetadata) {
+ this.lastNameMetadata = lastNameMetadata;
+ }
+
+
+ /**
+ * lockedRecipientPhoneAuthEditable.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness lockedRecipientPhoneAuthEditable(String lockedRecipientPhoneAuthEditable) {
+ this.lockedRecipientPhoneAuthEditable = lockedRecipientPhoneAuthEditable;
+ return this;
+ }
+
+ /**
+ * .
+ * @return lockedRecipientPhoneAuthEditable
+ **/
+ @Schema(description = "")
+ public String getLockedRecipientPhoneAuthEditable() {
+ return lockedRecipientPhoneAuthEditable;
+ }
+
+ /**
+ * setLockedRecipientPhoneAuthEditable.
+ **/
+ public void setLockedRecipientPhoneAuthEditable(String lockedRecipientPhoneAuthEditable) {
+ this.lockedRecipientPhoneAuthEditable = lockedRecipientPhoneAuthEditable;
+ }
+
+
+ /**
+ * lockedRecipientSmsEditable.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness lockedRecipientSmsEditable(String lockedRecipientSmsEditable) {
+ this.lockedRecipientSmsEditable = lockedRecipientSmsEditable;
+ return this;
+ }
+
+ /**
+ * .
+ * @return lockedRecipientSmsEditable
+ **/
+ @Schema(description = "")
+ public String getLockedRecipientSmsEditable() {
+ return lockedRecipientSmsEditable;
+ }
+
+ /**
+ * setLockedRecipientSmsEditable.
+ **/
+ public void setLockedRecipientSmsEditable(String lockedRecipientSmsEditable) {
+ this.lockedRecipientSmsEditable = lockedRecipientSmsEditable;
+ }
+
+
+ /**
+ * name.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness name(String name) {
+ this.name = name;
+ return this;
+ }
+
+ /**
+ * .
+ * @return name
+ **/
+ @Schema(description = "")
+ public String getName() {
+ return name;
+ }
+
+ /**
+ * setName.
+ **/
+ public void setName(String name) {
+ this.name = name;
+ }
+
+
+ /**
+ * nameMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness nameMetadata(PropertyMetadata nameMetadata) {
+ this.nameMetadata = nameMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return nameMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getNameMetadata() {
+ return nameMetadata;
+ }
+
+ /**
+ * setNameMetadata.
+ **/
+ public void setNameMetadata(PropertyMetadata nameMetadata) {
+ this.nameMetadata = nameMetadata;
+ }
+
+
+ /**
+ * notaryId.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness notaryId(String notaryId) {
+ this.notaryId = notaryId;
+ return this;
+ }
+
+ /**
+ * .
+ * @return notaryId
+ **/
+ @Schema(description = "")
+ public String getNotaryId() {
+ return notaryId;
+ }
+
+ /**
+ * setNotaryId.
+ **/
+ public void setNotaryId(String notaryId) {
+ this.notaryId = notaryId;
+ }
+
+
+ /**
+ * notarySignerEmailSent.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness notarySignerEmailSent(String notarySignerEmailSent) {
+ this.notarySignerEmailSent = notarySignerEmailSent;
+ return this;
+ }
+
+ /**
+ * .
+ * @return notarySignerEmailSent
+ **/
+ @Schema(description = "")
+ public String getNotarySignerEmailSent() {
+ return notarySignerEmailSent;
+ }
+
+ /**
+ * setNotarySignerEmailSent.
+ **/
+ public void setNotarySignerEmailSent(String notarySignerEmailSent) {
+ this.notarySignerEmailSent = notarySignerEmailSent;
+ }
+
+
+ /**
+ * note.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness note(String note) {
+ this.note = note;
+ return this;
+ }
+
+ /**
+ * Specifies a note that is unique to this recipient. This note is sent to the recipient via the signing email. The note displays in the signing UI near the upper left corner of the document on the signing screen. Maximum Length: 1000 characters..
+ * @return note
+ **/
+ @Schema(description = "Specifies a note that is unique to this recipient. This note is sent to the recipient via the signing email. The note displays in the signing UI near the upper left corner of the document on the signing screen. Maximum Length: 1000 characters.")
+ public String getNote() {
+ return note;
+ }
+
+ /**
+ * setNote.
+ **/
+ public void setNote(String note) {
+ this.note = note;
+ }
+
+
+ /**
+ * noteMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness noteMetadata(PropertyMetadata noteMetadata) {
+ this.noteMetadata = noteMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return noteMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getNoteMetadata() {
+ return noteMetadata;
+ }
+
+ /**
+ * setNoteMetadata.
+ **/
+ public void setNoteMetadata(PropertyMetadata noteMetadata) {
+ this.noteMetadata = noteMetadata;
+ }
+
+
+ /**
+ * offlineAttributes.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness offlineAttributes(OfflineAttributes offlineAttributes) {
+ this.offlineAttributes = offlineAttributes;
+ return this;
+ }
+
+ /**
+ * .
+ * @return offlineAttributes
+ **/
+ @Schema(description = "")
+ public OfflineAttributes getOfflineAttributes() {
+ return offlineAttributes;
+ }
+
+ /**
+ * setOfflineAttributes.
+ **/
+ public void setOfflineAttributes(OfflineAttributes offlineAttributes) {
+ this.offlineAttributes = offlineAttributes;
+ }
+
+
+ /**
+ * phoneAuthentication.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness phoneAuthentication(RecipientPhoneAuthentication phoneAuthentication) {
+ this.phoneAuthentication = phoneAuthentication;
+ return this;
+ }
+
+ /**
+ * .
+ * @return phoneAuthentication
+ **/
+ @Schema(description = "")
+ public RecipientPhoneAuthentication getPhoneAuthentication() {
+ return phoneAuthentication;
+ }
+
+ /**
+ * setPhoneAuthentication.
+ **/
+ public void setPhoneAuthentication(RecipientPhoneAuthentication phoneAuthentication) {
+ this.phoneAuthentication = phoneAuthentication;
+ }
+
+
+ /**
+ * phoneNumber.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness phoneNumber(RecipientPhoneNumber phoneNumber) {
+ this.phoneNumber = phoneNumber;
+ return this;
+ }
+
+ /**
+ * .
+ * @return phoneNumber
+ **/
+ @Schema(description = "")
+ public RecipientPhoneNumber getPhoneNumber() {
+ return phoneNumber;
+ }
+
+ /**
+ * setPhoneNumber.
+ **/
+ public void setPhoneNumber(RecipientPhoneNumber phoneNumber) {
+ this.phoneNumber = phoneNumber;
+ }
+
+
+ /**
+ * proofFile.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness proofFile(RecipientProofFile proofFile) {
+ this.proofFile = proofFile;
+ return this;
+ }
+
+ /**
+ * .
+ * @return proofFile
+ **/
+ @Schema(description = "")
+ public RecipientProofFile getProofFile() {
+ return proofFile;
+ }
+
+ /**
+ * setProofFile.
+ **/
+ public void setProofFile(RecipientProofFile proofFile) {
+ this.proofFile = proofFile;
+ }
+
+
+ /**
+ * recipientAttachments.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness recipientAttachments(java.util.List recipientAttachments) {
+ this.recipientAttachments = recipientAttachments;
+ return this;
+ }
+
+ /**
+ * addRecipientAttachmentsItem.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness addRecipientAttachmentsItem(RecipientAttachment recipientAttachmentsItem) {
+ if (this.recipientAttachments == null) {
+ this.recipientAttachments = new java.util.ArrayList<>();
+ }
+ this.recipientAttachments.add(recipientAttachmentsItem);
+ return this;
+ }
+
+ /**
+ * Reserved:.
+ * @return recipientAttachments
+ **/
+ @Schema(description = "Reserved:")
+ public java.util.List getRecipientAttachments() {
+ return recipientAttachments;
+ }
+
+ /**
+ * setRecipientAttachments.
+ **/
+ public void setRecipientAttachments(java.util.List recipientAttachments) {
+ this.recipientAttachments = recipientAttachments;
+ }
+
+
+ /**
+ * recipientAuthenticationStatus.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness recipientAuthenticationStatus(AuthenticationStatus recipientAuthenticationStatus) {
+ this.recipientAuthenticationStatus = recipientAuthenticationStatus;
+ return this;
+ }
+
+ /**
+ * .
+ * @return recipientAuthenticationStatus
+ **/
+ @Schema(description = "")
+ public AuthenticationStatus getRecipientAuthenticationStatus() {
+ return recipientAuthenticationStatus;
+ }
+
+ /**
+ * setRecipientAuthenticationStatus.
+ **/
+ public void setRecipientAuthenticationStatus(AuthenticationStatus recipientAuthenticationStatus) {
+ this.recipientAuthenticationStatus = recipientAuthenticationStatus;
+ }
+
+
+ /**
+ * recipientFeatureMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness recipientFeatureMetadata(java.util.List recipientFeatureMetadata) {
+ this.recipientFeatureMetadata = recipientFeatureMetadata;
+ return this;
+ }
+
+ /**
+ * addRecipientFeatureMetadataItem.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness addRecipientFeatureMetadataItem(FeatureAvailableMetadata recipientFeatureMetadataItem) {
+ if (this.recipientFeatureMetadata == null) {
+ this.recipientFeatureMetadata = new java.util.ArrayList<>();
+ }
+ this.recipientFeatureMetadata.add(recipientFeatureMetadataItem);
+ return this;
+ }
+
+ /**
+ * .
+ * @return recipientFeatureMetadata
+ **/
+ @Schema(description = "")
+ public java.util.List getRecipientFeatureMetadata() {
+ return recipientFeatureMetadata;
+ }
+
+ /**
+ * setRecipientFeatureMetadata.
+ **/
+ public void setRecipientFeatureMetadata(java.util.List recipientFeatureMetadata) {
+ this.recipientFeatureMetadata = recipientFeatureMetadata;
+ }
+
+
+ /**
+ * recipientId.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness recipientId(String recipientId) {
+ this.recipientId = recipientId;
+ return this;
+ }
+
+ /**
+ * Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document..
+ * @return recipientId
+ **/
+ @Schema(description = "Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document.")
+ public String getRecipientId() {
+ return recipientId;
+ }
+
+ /**
+ * setRecipientId.
+ **/
+ public void setRecipientId(String recipientId) {
+ this.recipientId = recipientId;
+ }
+
+
+ /**
+ * recipientIdGuid.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness recipientIdGuid(String recipientIdGuid) {
+ this.recipientIdGuid = recipientIdGuid;
+ return this;
+ }
+
+ /**
+ * .
+ * @return recipientIdGuid
+ **/
+ @Schema(description = "")
+ public String getRecipientIdGuid() {
+ return recipientIdGuid;
+ }
+
+ /**
+ * setRecipientIdGuid.
+ **/
+ public void setRecipientIdGuid(String recipientIdGuid) {
+ this.recipientIdGuid = recipientIdGuid;
+ }
+
+
+ /**
+ * recipientSignatureProviders.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness recipientSignatureProviders(java.util.List recipientSignatureProviders) {
+ this.recipientSignatureProviders = recipientSignatureProviders;
+ return this;
+ }
+
+ /**
+ * addRecipientSignatureProvidersItem.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness addRecipientSignatureProvidersItem(RecipientSignatureProvider recipientSignatureProvidersItem) {
+ if (this.recipientSignatureProviders == null) {
+ this.recipientSignatureProviders = new java.util.ArrayList<>();
+ }
+ this.recipientSignatureProviders.add(recipientSignatureProvidersItem);
+ return this;
+ }
+
+ /**
+ * .
+ * @return recipientSignatureProviders
+ **/
+ @Schema(description = "")
+ public java.util.List getRecipientSignatureProviders() {
+ return recipientSignatureProviders;
+ }
+
+ /**
+ * setRecipientSignatureProviders.
+ **/
+ public void setRecipientSignatureProviders(java.util.List recipientSignatureProviders) {
+ this.recipientSignatureProviders = recipientSignatureProviders;
+ }
+
+
+ /**
+ * recipientSuppliesTabs.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness recipientSuppliesTabs(String recipientSuppliesTabs) {
+ this.recipientSuppliesTabs = recipientSuppliesTabs;
+ return this;
+ }
+
+ /**
+ * .
+ * @return recipientSuppliesTabs
+ **/
+ @Schema(description = "")
+ public String getRecipientSuppliesTabs() {
+ return recipientSuppliesTabs;
+ }
+
+ /**
+ * setRecipientSuppliesTabs.
+ **/
+ public void setRecipientSuppliesTabs(String recipientSuppliesTabs) {
+ this.recipientSuppliesTabs = recipientSuppliesTabs;
+ }
+
+
+ /**
+ * recipientType.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness recipientType(String recipientType) {
+ this.recipientType = recipientType;
+ return this;
+ }
+
+ /**
+ * .
+ * @return recipientType
+ **/
+ @Schema(description = "")
+ public String getRecipientType() {
+ return recipientType;
+ }
+
+ /**
+ * setRecipientType.
+ **/
+ public void setRecipientType(String recipientType) {
+ this.recipientType = recipientType;
+ }
+
+
+ /**
+ * recipientTypeMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness recipientTypeMetadata(PropertyMetadata recipientTypeMetadata) {
+ this.recipientTypeMetadata = recipientTypeMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return recipientTypeMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getRecipientTypeMetadata() {
+ return recipientTypeMetadata;
+ }
+
+ /**
+ * setRecipientTypeMetadata.
+ **/
+ public void setRecipientTypeMetadata(PropertyMetadata recipientTypeMetadata) {
+ this.recipientTypeMetadata = recipientTypeMetadata;
+ }
+
+
+ /**
+ * requireIdLookup.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness requireIdLookup(String requireIdLookup) {
+ this.requireIdLookup = requireIdLookup;
+ return this;
+ }
+
+ /**
+ * When set to **true**, the recipient is required to use the specified ID check method (including Phone and SMS authentication) to validate their identity. .
+ * @return requireIdLookup
+ **/
+ @Schema(description = "When set to **true**, the recipient is required to use the specified ID check method (including Phone and SMS authentication) to validate their identity. ")
+ public String getRequireIdLookup() {
+ return requireIdLookup;
+ }
+
+ /**
+ * setRequireIdLookup.
+ **/
+ public void setRequireIdLookup(String requireIdLookup) {
+ this.requireIdLookup = requireIdLookup;
+ }
+
+
+ /**
+ * requireIdLookupMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness requireIdLookupMetadata(PropertyMetadata requireIdLookupMetadata) {
+ this.requireIdLookupMetadata = requireIdLookupMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return requireIdLookupMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getRequireIdLookupMetadata() {
+ return requireIdLookupMetadata;
+ }
+
+ /**
+ * setRequireIdLookupMetadata.
+ **/
+ public void setRequireIdLookupMetadata(PropertyMetadata requireIdLookupMetadata) {
+ this.requireIdLookupMetadata = requireIdLookupMetadata;
+ }
+
+
+ /**
+ * requireSignerCertificate.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness requireSignerCertificate(String requireSignerCertificate) {
+ this.requireSignerCertificate = requireSignerCertificate;
+ return this;
+ }
+
+ /**
+ * .
+ * @return requireSignerCertificate
+ **/
+ @Schema(description = "")
+ public String getRequireSignerCertificate() {
+ return requireSignerCertificate;
+ }
+
+ /**
+ * setRequireSignerCertificate.
+ **/
+ public void setRequireSignerCertificate(String requireSignerCertificate) {
+ this.requireSignerCertificate = requireSignerCertificate;
+ }
+
+
+ /**
+ * requireSignOnPaper.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness requireSignOnPaper(String requireSignOnPaper) {
+ this.requireSignOnPaper = requireSignOnPaper;
+ return this;
+ }
+
+ /**
+ * .
+ * @return requireSignOnPaper
+ **/
+ @Schema(description = "")
+ public String getRequireSignOnPaper() {
+ return requireSignOnPaper;
+ }
+
+ /**
+ * setRequireSignOnPaper.
+ **/
+ public void setRequireSignOnPaper(String requireSignOnPaper) {
+ this.requireSignOnPaper = requireSignOnPaper;
+ }
+
+
+ /**
+ * requireUploadSignature.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness requireUploadSignature(String requireUploadSignature) {
+ this.requireUploadSignature = requireUploadSignature;
+ return this;
+ }
+
+ /**
+ * .
+ * @return requireUploadSignature
+ **/
+ @Schema(description = "")
+ public String getRequireUploadSignature() {
+ return requireUploadSignature;
+ }
+
+ /**
+ * setRequireUploadSignature.
+ **/
+ public void setRequireUploadSignature(String requireUploadSignature) {
+ this.requireUploadSignature = requireUploadSignature;
+ }
+
+
+ /**
+ * roleName.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness roleName(String roleName) {
+ this.roleName = roleName;
+ return this;
+ }
+
+ /**
+ * Optional element. Specifies the role name associated with the recipient. This is required when working with template recipients..
+ * @return roleName
+ **/
+ @Schema(description = "Optional element. Specifies the role name associated with the recipient. This is required when working with template recipients.")
+ public String getRoleName() {
+ return roleName;
+ }
+
+ /**
+ * setRoleName.
+ **/
+ public void setRoleName(String roleName) {
+ this.roleName = roleName;
+ }
+
+
+ /**
+ * routingOrder.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness routingOrder(String routingOrder) {
+ this.routingOrder = routingOrder;
+ return this;
+ }
+
+ /**
+ * Specifies the routing order of the recipient in the envelope. .
+ * @return routingOrder
+ **/
+ @Schema(description = "Specifies the routing order of the recipient in the envelope. ")
+ public String getRoutingOrder() {
+ return routingOrder;
+ }
+
+ /**
+ * setRoutingOrder.
+ **/
+ public void setRoutingOrder(String routingOrder) {
+ this.routingOrder = routingOrder;
+ }
+
+
+ /**
+ * routingOrderMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness routingOrderMetadata(PropertyMetadata routingOrderMetadata) {
+ this.routingOrderMetadata = routingOrderMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return routingOrderMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getRoutingOrderMetadata() {
+ return routingOrderMetadata;
+ }
+
+ /**
+ * setRoutingOrderMetadata.
+ **/
+ public void setRoutingOrderMetadata(PropertyMetadata routingOrderMetadata) {
+ this.routingOrderMetadata = routingOrderMetadata;
+ }
+
+
+ /**
+ * sentDateTime.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness sentDateTime(String sentDateTime) {
+ this.sentDateTime = sentDateTime;
+ return this;
+ }
+
+ /**
+ * The date and time the envelope was sent..
+ * @return sentDateTime
+ **/
+ @Schema(description = "The date and time the envelope was sent.")
+ public String getSentDateTime() {
+ return sentDateTime;
+ }
+
+ /**
+ * setSentDateTime.
+ **/
+ public void setSentDateTime(String sentDateTime) {
+ this.sentDateTime = sentDateTime;
+ }
+
+
+ /**
+ * signatureInfo.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness signatureInfo(RecipientSignatureInformation signatureInfo) {
+ this.signatureInfo = signatureInfo;
+ return this;
+ }
+
+ /**
+ * .
+ * @return signatureInfo
+ **/
+ @Schema(description = "")
+ public RecipientSignatureInformation getSignatureInfo() {
+ return signatureInfo;
+ }
+
+ /**
+ * setSignatureInfo.
+ **/
+ public void setSignatureInfo(RecipientSignatureInformation signatureInfo) {
+ this.signatureInfo = signatureInfo;
+ }
+
+
+ /**
+ * signedDateTime.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness signedDateTime(String signedDateTime) {
+ this.signedDateTime = signedDateTime;
+ return this;
+ }
+
+ /**
+ * Reserved: For DocuSign use only. .
+ * @return signedDateTime
+ **/
+ @Schema(description = "Reserved: For DocuSign use only. ")
+ public String getSignedDateTime() {
+ return signedDateTime;
+ }
+
+ /**
+ * setSignedDateTime.
+ **/
+ public void setSignedDateTime(String signedDateTime) {
+ this.signedDateTime = signedDateTime;
+ }
+
+
+ /**
+ * signInEachLocation.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness signInEachLocation(String signInEachLocation) {
+ this.signInEachLocation = signInEachLocation;
+ return this;
+ }
+
+ /**
+ * When set to **true**, specifies that the signer must sign in all locations..
+ * @return signInEachLocation
+ **/
+ @Schema(description = "When set to **true**, specifies that the signer must sign in all locations.")
+ public String getSignInEachLocation() {
+ return signInEachLocation;
+ }
+
+ /**
+ * setSignInEachLocation.
+ **/
+ public void setSignInEachLocation(String signInEachLocation) {
+ this.signInEachLocation = signInEachLocation;
+ }
+
+
+ /**
+ * signInEachLocationMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness signInEachLocationMetadata(PropertyMetadata signInEachLocationMetadata) {
+ this.signInEachLocationMetadata = signInEachLocationMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return signInEachLocationMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getSignInEachLocationMetadata() {
+ return signInEachLocationMetadata;
+ }
+
+ /**
+ * setSignInEachLocationMetadata.
+ **/
+ public void setSignInEachLocationMetadata(PropertyMetadata signInEachLocationMetadata) {
+ this.signInEachLocationMetadata = signInEachLocationMetadata;
+ }
+
+
+ /**
+ * signingGroupId.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness signingGroupId(String signingGroupId) {
+ this.signingGroupId = signingGroupId;
+ return this;
+ }
+
+ /**
+ * When set to **true** and the feature is enabled in the sender's account, the signing recipient is required to draw signatures and initials at each signature/initial tab ( instead of adopting a signature/initial style or only drawing a signature/initial once)..
+ * @return signingGroupId
+ **/
+ @Schema(description = "When set to **true** and the feature is enabled in the sender's account, the signing recipient is required to draw signatures and initials at each signature/initial tab ( instead of adopting a signature/initial style or only drawing a signature/initial once).")
+ public String getSigningGroupId() {
+ return signingGroupId;
+ }
+
+ /**
+ * setSigningGroupId.
+ **/
+ public void setSigningGroupId(String signingGroupId) {
+ this.signingGroupId = signingGroupId;
+ }
+
+
+ /**
+ * signingGroupIdMetadata.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness signingGroupIdMetadata(PropertyMetadata signingGroupIdMetadata) {
+ this.signingGroupIdMetadata = signingGroupIdMetadata;
+ return this;
+ }
+
+ /**
+ * .
+ * @return signingGroupIdMetadata
+ **/
+ @Schema(description = "")
+ public PropertyMetadata getSigningGroupIdMetadata() {
+ return signingGroupIdMetadata;
+ }
+
+ /**
+ * setSigningGroupIdMetadata.
+ **/
+ public void setSigningGroupIdMetadata(PropertyMetadata signingGroupIdMetadata) {
+ this.signingGroupIdMetadata = signingGroupIdMetadata;
+ }
+
+
+ /**
+ * signingGroupName.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness signingGroupName(String signingGroupName) {
+ this.signingGroupName = signingGroupName;
+ return this;
+ }
+
+ /**
+ * The display name for the signing group. Maximum Length: 100 characters. .
+ * @return signingGroupName
+ **/
+ @Schema(description = "The display name for the signing group. Maximum Length: 100 characters. ")
+ public String getSigningGroupName() {
+ return signingGroupName;
+ }
+
+ /**
+ * setSigningGroupName.
+ **/
+ public void setSigningGroupName(String signingGroupName) {
+ this.signingGroupName = signingGroupName;
+ }
+
+
+ /**
+ * signingGroupUsers.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness signingGroupUsers(java.util.List signingGroupUsers) {
+ this.signingGroupUsers = signingGroupUsers;
+ return this;
+ }
+
+ /**
+ * addSigningGroupUsersItem.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness addSigningGroupUsersItem(UserInfo signingGroupUsersItem) {
+ if (this.signingGroupUsers == null) {
+ this.signingGroupUsers = new java.util.ArrayList<>();
+ }
+ this.signingGroupUsers.add(signingGroupUsersItem);
+ return this;
+ }
+
+ /**
+ * A complex type that contains information about users in the signing group..
+ * @return signingGroupUsers
+ **/
+ @Schema(description = "A complex type that contains information about users in the signing group.")
+ public java.util.List getSigningGroupUsers() {
+ return signingGroupUsers;
+ }
+
+ /**
+ * setSigningGroupUsers.
+ **/
+ public void setSigningGroupUsers(java.util.List signingGroupUsers) {
+ this.signingGroupUsers = signingGroupUsers;
+ }
+
+
+ /**
+ * smsAuthentication.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness smsAuthentication(RecipientSMSAuthentication smsAuthentication) {
+ this.smsAuthentication = smsAuthentication;
+ return this;
+ }
+
+ /**
+ * .
+ * @return smsAuthentication
+ **/
+ @Schema(description = "")
+ public RecipientSMSAuthentication getSmsAuthentication() {
+ return smsAuthentication;
+ }
+
+ /**
+ * setSmsAuthentication.
+ **/
+ public void setSmsAuthentication(RecipientSMSAuthentication smsAuthentication) {
+ this.smsAuthentication = smsAuthentication;
+ }
+
+
+ /**
+ * socialAuthentications.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness socialAuthentications(java.util.List socialAuthentications) {
+ this.socialAuthentications = socialAuthentications;
+ return this;
+ }
+
+ /**
+ * addSocialAuthenticationsItem.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness addSocialAuthenticationsItem(SocialAuthentication socialAuthenticationsItem) {
+ if (this.socialAuthentications == null) {
+ this.socialAuthentications = new java.util.ArrayList<>();
+ }
+ this.socialAuthentications.add(socialAuthenticationsItem);
+ return this;
+ }
+
+ /**
+ * Lists the social ID type that can be used for recipient authentication..
+ * @return socialAuthentications
+ **/
+ @Schema(description = " Lists the social ID type that can be used for recipient authentication.")
+ public java.util.List getSocialAuthentications() {
+ return socialAuthentications;
+ }
+
+ /**
+ * setSocialAuthentications.
+ **/
+ public void setSocialAuthentications(java.util.List socialAuthentications) {
+ this.socialAuthentications = socialAuthentications;
+ }
+
+
+ /**
+ * status.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness status(String status) {
+ this.status = status;
+ return this;
+ }
+
+ /**
+ * Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later..
+ * @return status
+ **/
+ @Schema(description = "Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later.")
+ public String getStatus() {
+ return status;
+ }
+
+ /**
+ * setStatus.
+ **/
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+
+ /**
+ * statusCode.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness statusCode(String statusCode) {
+ this.statusCode = statusCode;
+ return this;
+ }
+
+ /**
+ * .
+ * @return statusCode
+ **/
+ @Schema(description = "")
+ public String getStatusCode() {
+ return statusCode;
+ }
+
+ /**
+ * setStatusCode.
+ **/
+ public void setStatusCode(String statusCode) {
+ this.statusCode = statusCode;
+ }
+
+
+ /**
+ * suppressEmails.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness suppressEmails(String suppressEmails) {
+ this.suppressEmails = suppressEmails;
+ return this;
+ }
+
+ /**
+ * .
+ * @return suppressEmails
+ **/
+ @Schema(description = "")
+ public String getSuppressEmails() {
+ return suppressEmails;
+ }
+
+ /**
+ * setSuppressEmails.
+ **/
+ public void setSuppressEmails(String suppressEmails) {
+ this.suppressEmails = suppressEmails;
+ }
+
+
+ /**
+ * tabs.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness tabs(Tabs tabs) {
+ this.tabs = tabs;
+ return this;
+ }
+
+ /**
+ * .
+ * @return tabs
+ **/
+ @Schema(description = "")
+ public Tabs getTabs() {
+ return tabs;
+ }
+
+ /**
+ * setTabs.
+ **/
+ public void setTabs(Tabs tabs) {
+ this.tabs = tabs;
+ }
+
+
+ /**
+ * templateLocked.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness templateLocked(String templateLocked) {
+ this.templateLocked = templateLocked;
+ return this;
+ }
+
+ /**
+ * When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients. .
+ * @return templateLocked
+ **/
+ @Schema(description = "When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients. ")
+ public String getTemplateLocked() {
+ return templateLocked;
+ }
+
+ /**
+ * setTemplateLocked.
+ **/
+ public void setTemplateLocked(String templateLocked) {
+ this.templateLocked = templateLocked;
+ }
+
+
+ /**
+ * templateRequired.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness templateRequired(String templateRequired) {
+ this.templateRequired = templateRequired;
+ return this;
+ }
+
+ /**
+ * When set to **true**, the sender may not remove the recipient. Used only when working with template recipients..
+ * @return templateRequired
+ **/
+ @Schema(description = "When set to **true**, the sender may not remove the recipient. Used only when working with template recipients.")
+ public String getTemplateRequired() {
+ return templateRequired;
+ }
+
+ /**
+ * setTemplateRequired.
+ **/
+ public void setTemplateRequired(String templateRequired) {
+ this.templateRequired = templateRequired;
+ }
+
+
+ /**
+ * totalTabCount.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness totalTabCount(String totalTabCount) {
+ this.totalTabCount = totalTabCount;
+ return this;
+ }
+
+ /**
+ * .
+ * @return totalTabCount
+ **/
+ @Schema(description = "")
+ public String getTotalTabCount() {
+ return totalTabCount;
+ }
+
+ /**
+ * setTotalTabCount.
+ **/
+ public void setTotalTabCount(String totalTabCount) {
+ this.totalTabCount = totalTabCount;
+ }
+
+
+ /**
+ * type.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness type(String type) {
+ this.type = type;
+ return this;
+ }
+
+ /**
+ * .
+ * @return type
+ **/
+ @Schema(description = "")
+ public String getType() {
+ return type;
+ }
+
+ /**
+ * setType.
+ **/
+ public void setType(String type) {
+ this.type = type;
+ }
+
+
+ /**
+ * userId.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness userId(String userId) {
+ this.userId = userId;
+ return this;
+ }
+
+ /**
+ * .
+ * @return userId
+ **/
+ @Schema(description = "")
+ public String getUserId() {
+ return userId;
+ }
+
+ /**
+ * setUserId.
+ **/
+ public void setUserId(String userId) {
+ this.userId = userId;
+ }
+
+
+ /**
+ * webFormRecipientViewId.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness webFormRecipientViewId(String webFormRecipientViewId) {
+ this.webFormRecipientViewId = webFormRecipientViewId;
+ return this;
+ }
+
+ /**
+ * .
+ * @return webFormRecipientViewId
+ **/
+ @Schema(description = "")
+ public String getWebFormRecipientViewId() {
+ return webFormRecipientViewId;
+ }
+
+ /**
+ * setWebFormRecipientViewId.
+ **/
+ public void setWebFormRecipientViewId(String webFormRecipientViewId) {
+ this.webFormRecipientViewId = webFormRecipientViewId;
+ }
+
+
+ /**
+ * witnessFor.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness witnessFor(String witnessFor) {
+ this.witnessFor = witnessFor;
+ return this;
+ }
+
+ /**
+ * .
+ * @return witnessFor
+ **/
+ @Schema(description = "")
+ public String getWitnessFor() {
+ return witnessFor;
+ }
+
+ /**
+ * setWitnessFor.
+ **/
+ public void setWitnessFor(String witnessFor) {
+ this.witnessFor = witnessFor;
+ }
+
+
+ /**
+ * witnessForGuid.
+ *
+ * @return NotaryWitness
+ **/
+ public NotaryWitness witnessForGuid(String witnessForGuid) {
+ this.witnessForGuid = witnessForGuid;
+ return this;
+ }
+
+ /**
+ * .
+ * @return witnessForGuid
+ **/
+ @Schema(description = "")
+ public String getWitnessForGuid() {
+ return witnessForGuid;
+ }
+
+ /**
+ * setWitnessForGuid.
+ **/
+ public void setWitnessForGuid(String witnessForGuid) {
+ this.witnessForGuid = witnessForGuid;
+ }
+
+
+ /**
+ * Compares objects.
+ *
+ * @return true or false depending on comparison result.
+ */
+ @Override
+ public boolean equals(java.lang.Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ NotaryWitness notaryWitness = (NotaryWitness) o;
+ return Objects.equals(this.accessCode, notaryWitness.accessCode) &&
+ Objects.equals(this.accessCodeMetadata, notaryWitness.accessCodeMetadata) &&
+ Objects.equals(this.addAccessCodeToEmail, notaryWitness.addAccessCodeToEmail) &&
+ Objects.equals(this.additionalNotifications, notaryWitness.additionalNotifications) &&
+ Objects.equals(this.agentCanEditEmail, notaryWitness.agentCanEditEmail) &&
+ Objects.equals(this.agentCanEditName, notaryWitness.agentCanEditName) &&
+ Objects.equals(this.allowSystemOverrideForLockedRecipient, notaryWitness.allowSystemOverrideForLockedRecipient) &&
+ Objects.equals(this.autoNavigation, notaryWitness.autoNavigation) &&
+ Objects.equals(this.autoRespondedReason, notaryWitness.autoRespondedReason) &&
+ Objects.equals(this.bulkRecipientsUri, notaryWitness.bulkRecipientsUri) &&
+ Objects.equals(this.bulkSendV2Recipient, notaryWitness.bulkSendV2Recipient) &&
+ Objects.equals(this.canSignOffline, notaryWitness.canSignOffline) &&
+ Objects.equals(this.clientUserId, notaryWitness.clientUserId) &&
+ Objects.equals(this.completedCount, notaryWitness.completedCount) &&
+ Objects.equals(this.consentDetailsList, notaryWitness.consentDetailsList) &&
+ Objects.equals(this.creationReason, notaryWitness.creationReason) &&
+ Objects.equals(this.customFields, notaryWitness.customFields) &&
+ Objects.equals(this.declinedDateTime, notaryWitness.declinedDateTime) &&
+ Objects.equals(this.declinedReason, notaryWitness.declinedReason) &&
+ Objects.equals(this.defaultRecipient, notaryWitness.defaultRecipient) &&
+ Objects.equals(this.delegatedBy, notaryWitness.delegatedBy) &&
+ Objects.equals(this.delegatedTo, notaryWitness.delegatedTo) &&
+ Objects.equals(this.deliveredDateTime, notaryWitness.deliveredDateTime) &&
+ Objects.equals(this.deliveryMethod, notaryWitness.deliveryMethod) &&
+ Objects.equals(this.deliveryMethodMetadata, notaryWitness.deliveryMethodMetadata) &&
+ Objects.equals(this.designatorId, notaryWitness.designatorId) &&
+ Objects.equals(this.designatorIdGuid, notaryWitness.designatorIdGuid) &&
+ Objects.equals(this.documentTemplateId, notaryWitness.documentTemplateId) &&
+ Objects.equals(this.documentVisibility, notaryWitness.documentVisibility) &&
+ Objects.equals(this.email, notaryWitness.email) &&
+ Objects.equals(this.emailMetadata, notaryWitness.emailMetadata) &&
+ Objects.equals(this.emailNotification, notaryWitness.emailNotification) &&
+ Objects.equals(this.emailRecipientPostSigningURL, notaryWitness.emailRecipientPostSigningURL) &&
+ Objects.equals(this.embeddedRecipientStartURL, notaryWitness.embeddedRecipientStartURL) &&
+ Objects.equals(this.errorDetails, notaryWitness.errorDetails) &&
+ Objects.equals(this.excludedDocuments, notaryWitness.excludedDocuments) &&
+ Objects.equals(this.faxNumber, notaryWitness.faxNumber) &&
+ Objects.equals(this.faxNumberMetadata, notaryWitness.faxNumberMetadata) &&
+ Objects.equals(this.firstName, notaryWitness.firstName) &&
+ Objects.equals(this.firstNameMetadata, notaryWitness.firstNameMetadata) &&
+ Objects.equals(this.fullName, notaryWitness.fullName) &&
+ Objects.equals(this.fullNameMetadata, notaryWitness.fullNameMetadata) &&
+ Objects.equals(this.idCheckConfigurationName, notaryWitness.idCheckConfigurationName) &&
+ Objects.equals(this.idCheckConfigurationNameMetadata, notaryWitness.idCheckConfigurationNameMetadata) &&
+ Objects.equals(this.idCheckInformationInput, notaryWitness.idCheckInformationInput) &&
+ Objects.equals(this.identityVerification, notaryWitness.identityVerification) &&
+ Objects.equals(this.inheritEmailNotificationConfiguration, notaryWitness.inheritEmailNotificationConfiguration) &&
+ Objects.equals(this.isBulkRecipient, notaryWitness.isBulkRecipient) &&
+ Objects.equals(this.isBulkRecipientMetadata, notaryWitness.isBulkRecipientMetadata) &&
+ Objects.equals(this.lastName, notaryWitness.lastName) &&
+ Objects.equals(this.lastNameMetadata, notaryWitness.lastNameMetadata) &&
+ Objects.equals(this.lockedRecipientPhoneAuthEditable, notaryWitness.lockedRecipientPhoneAuthEditable) &&
+ Objects.equals(this.lockedRecipientSmsEditable, notaryWitness.lockedRecipientSmsEditable) &&
+ Objects.equals(this.name, notaryWitness.name) &&
+ Objects.equals(this.nameMetadata, notaryWitness.nameMetadata) &&
+ Objects.equals(this.notaryId, notaryWitness.notaryId) &&
+ Objects.equals(this.notarySignerEmailSent, notaryWitness.notarySignerEmailSent) &&
+ Objects.equals(this.note, notaryWitness.note) &&
+ Objects.equals(this.noteMetadata, notaryWitness.noteMetadata) &&
+ Objects.equals(this.offlineAttributes, notaryWitness.offlineAttributes) &&
+ Objects.equals(this.phoneAuthentication, notaryWitness.phoneAuthentication) &&
+ Objects.equals(this.phoneNumber, notaryWitness.phoneNumber) &&
+ Objects.equals(this.proofFile, notaryWitness.proofFile) &&
+ Objects.equals(this.recipientAttachments, notaryWitness.recipientAttachments) &&
+ Objects.equals(this.recipientAuthenticationStatus, notaryWitness.recipientAuthenticationStatus) &&
+ Objects.equals(this.recipientFeatureMetadata, notaryWitness.recipientFeatureMetadata) &&
+ Objects.equals(this.recipientId, notaryWitness.recipientId) &&
+ Objects.equals(this.recipientIdGuid, notaryWitness.recipientIdGuid) &&
+ Objects.equals(this.recipientSignatureProviders, notaryWitness.recipientSignatureProviders) &&
+ Objects.equals(this.recipientSuppliesTabs, notaryWitness.recipientSuppliesTabs) &&
+ Objects.equals(this.recipientType, notaryWitness.recipientType) &&
+ Objects.equals(this.recipientTypeMetadata, notaryWitness.recipientTypeMetadata) &&
+ Objects.equals(this.requireIdLookup, notaryWitness.requireIdLookup) &&
+ Objects.equals(this.requireIdLookupMetadata, notaryWitness.requireIdLookupMetadata) &&
+ Objects.equals(this.requireSignerCertificate, notaryWitness.requireSignerCertificate) &&
+ Objects.equals(this.requireSignOnPaper, notaryWitness.requireSignOnPaper) &&
+ Objects.equals(this.requireUploadSignature, notaryWitness.requireUploadSignature) &&
+ Objects.equals(this.roleName, notaryWitness.roleName) &&
+ Objects.equals(this.routingOrder, notaryWitness.routingOrder) &&
+ Objects.equals(this.routingOrderMetadata, notaryWitness.routingOrderMetadata) &&
+ Objects.equals(this.sentDateTime, notaryWitness.sentDateTime) &&
+ Objects.equals(this.signatureInfo, notaryWitness.signatureInfo) &&
+ Objects.equals(this.signedDateTime, notaryWitness.signedDateTime) &&
+ Objects.equals(this.signInEachLocation, notaryWitness.signInEachLocation) &&
+ Objects.equals(this.signInEachLocationMetadata, notaryWitness.signInEachLocationMetadata) &&
+ Objects.equals(this.signingGroupId, notaryWitness.signingGroupId) &&
+ Objects.equals(this.signingGroupIdMetadata, notaryWitness.signingGroupIdMetadata) &&
+ Objects.equals(this.signingGroupName, notaryWitness.signingGroupName) &&
+ Objects.equals(this.signingGroupUsers, notaryWitness.signingGroupUsers) &&
+ Objects.equals(this.smsAuthentication, notaryWitness.smsAuthentication) &&
+ Objects.equals(this.socialAuthentications, notaryWitness.socialAuthentications) &&
+ Objects.equals(this.status, notaryWitness.status) &&
+ Objects.equals(this.statusCode, notaryWitness.statusCode) &&
+ Objects.equals(this.suppressEmails, notaryWitness.suppressEmails) &&
+ Objects.equals(this.tabs, notaryWitness.tabs) &&
+ Objects.equals(this.templateLocked, notaryWitness.templateLocked) &&
+ Objects.equals(this.templateRequired, notaryWitness.templateRequired) &&
+ Objects.equals(this.totalTabCount, notaryWitness.totalTabCount) &&
+ Objects.equals(this.type, notaryWitness.type) &&
+ Objects.equals(this.userId, notaryWitness.userId) &&
+ Objects.equals(this.webFormRecipientViewId, notaryWitness.webFormRecipientViewId) &&
+ Objects.equals(this.witnessFor, notaryWitness.witnessFor) &&
+ Objects.equals(this.witnessForGuid, notaryWitness.witnessForGuid);
+ }
+
+ /**
+ * Returns the HashCode.
+ */
+ @Override
+ public int hashCode() {
+ return Objects.hash(accessCode, accessCodeMetadata, addAccessCodeToEmail, additionalNotifications, agentCanEditEmail, agentCanEditName, allowSystemOverrideForLockedRecipient, autoNavigation, autoRespondedReason, bulkRecipientsUri, bulkSendV2Recipient, canSignOffline, clientUserId, completedCount, consentDetailsList, creationReason, customFields, declinedDateTime, declinedReason, defaultRecipient, delegatedBy, delegatedTo, deliveredDateTime, deliveryMethod, deliveryMethodMetadata, designatorId, designatorIdGuid, documentTemplateId, documentVisibility, email, emailMetadata, emailNotification, emailRecipientPostSigningURL, embeddedRecipientStartURL, errorDetails, excludedDocuments, faxNumber, faxNumberMetadata, firstName, firstNameMetadata, fullName, fullNameMetadata, idCheckConfigurationName, idCheckConfigurationNameMetadata, idCheckInformationInput, identityVerification, inheritEmailNotificationConfiguration, isBulkRecipient, isBulkRecipientMetadata, lastName, lastNameMetadata, lockedRecipientPhoneAuthEditable, lockedRecipientSmsEditable, name, nameMetadata, notaryId, notarySignerEmailSent, note, noteMetadata, offlineAttributes, phoneAuthentication, phoneNumber, proofFile, recipientAttachments, recipientAuthenticationStatus, recipientFeatureMetadata, recipientId, recipientIdGuid, recipientSignatureProviders, recipientSuppliesTabs, recipientType, recipientTypeMetadata, requireIdLookup, requireIdLookupMetadata, requireSignerCertificate, requireSignOnPaper, requireUploadSignature, roleName, routingOrder, routingOrderMetadata, sentDateTime, signatureInfo, signedDateTime, signInEachLocation, signInEachLocationMetadata, signingGroupId, signingGroupIdMetadata, signingGroupName, signingGroupUsers, smsAuthentication, socialAuthentications, status, statusCode, suppressEmails, tabs, templateLocked, templateRequired, totalTabCount, type, userId, webFormRecipientViewId, witnessFor, witnessForGuid);
+ }
+
+
+ /**
+ * Converts the given object to string.
+ */
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class NotaryWitness {\n");
+
+ sb.append(" accessCode: ").append(toIndentedString(accessCode)).append("\n");
+ sb.append(" accessCodeMetadata: ").append(toIndentedString(accessCodeMetadata)).append("\n");
+ sb.append(" addAccessCodeToEmail: ").append(toIndentedString(addAccessCodeToEmail)).append("\n");
+ sb.append(" additionalNotifications: ").append(toIndentedString(additionalNotifications)).append("\n");
+ sb.append(" agentCanEditEmail: ").append(toIndentedString(agentCanEditEmail)).append("\n");
+ sb.append(" agentCanEditName: ").append(toIndentedString(agentCanEditName)).append("\n");
+ sb.append(" allowSystemOverrideForLockedRecipient: ").append(toIndentedString(allowSystemOverrideForLockedRecipient)).append("\n");
+ sb.append(" autoNavigation: ").append(toIndentedString(autoNavigation)).append("\n");
+ sb.append(" autoRespondedReason: ").append(toIndentedString(autoRespondedReason)).append("\n");
+ sb.append(" bulkRecipientsUri: ").append(toIndentedString(bulkRecipientsUri)).append("\n");
+ sb.append(" bulkSendV2Recipient: ").append(toIndentedString(bulkSendV2Recipient)).append("\n");
+ sb.append(" canSignOffline: ").append(toIndentedString(canSignOffline)).append("\n");
+ sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n");
+ sb.append(" completedCount: ").append(toIndentedString(completedCount)).append("\n");
+ sb.append(" consentDetailsList: ").append(toIndentedString(consentDetailsList)).append("\n");
+ sb.append(" creationReason: ").append(toIndentedString(creationReason)).append("\n");
+ sb.append(" customFields: ").append(toIndentedString(customFields)).append("\n");
+ sb.append(" declinedDateTime: ").append(toIndentedString(declinedDateTime)).append("\n");
+ sb.append(" declinedReason: ").append(toIndentedString(declinedReason)).append("\n");
+ sb.append(" defaultRecipient: ").append(toIndentedString(defaultRecipient)).append("\n");
+ sb.append(" delegatedBy: ").append(toIndentedString(delegatedBy)).append("\n");
+ sb.append(" delegatedTo: ").append(toIndentedString(delegatedTo)).append("\n");
+ sb.append(" deliveredDateTime: ").append(toIndentedString(deliveredDateTime)).append("\n");
+ sb.append(" deliveryMethod: ").append(toIndentedString(deliveryMethod)).append("\n");
+ sb.append(" deliveryMethodMetadata: ").append(toIndentedString(deliveryMethodMetadata)).append("\n");
+ sb.append(" designatorId: ").append(toIndentedString(designatorId)).append("\n");
+ sb.append(" designatorIdGuid: ").append(toIndentedString(designatorIdGuid)).append("\n");
+ sb.append(" documentTemplateId: ").append(toIndentedString(documentTemplateId)).append("\n");
+ sb.append(" documentVisibility: ").append(toIndentedString(documentVisibility)).append("\n");
+ sb.append(" email: ").append(toIndentedString(email)).append("\n");
+ sb.append(" emailMetadata: ").append(toIndentedString(emailMetadata)).append("\n");
+ sb.append(" emailNotification: ").append(toIndentedString(emailNotification)).append("\n");
+ sb.append(" emailRecipientPostSigningURL: ").append(toIndentedString(emailRecipientPostSigningURL)).append("\n");
+ sb.append(" embeddedRecipientStartURL: ").append(toIndentedString(embeddedRecipientStartURL)).append("\n");
+ sb.append(" errorDetails: ").append(toIndentedString(errorDetails)).append("\n");
+ sb.append(" excludedDocuments: ").append(toIndentedString(excludedDocuments)).append("\n");
+ sb.append(" faxNumber: ").append(toIndentedString(faxNumber)).append("\n");
+ sb.append(" faxNumberMetadata: ").append(toIndentedString(faxNumberMetadata)).append("\n");
+ sb.append(" firstName: ").append(toIndentedString(firstName)).append("\n");
+ sb.append(" firstNameMetadata: ").append(toIndentedString(firstNameMetadata)).append("\n");
+ sb.append(" fullName: ").append(toIndentedString(fullName)).append("\n");
+ sb.append(" fullNameMetadata: ").append(toIndentedString(fullNameMetadata)).append("\n");
+ sb.append(" idCheckConfigurationName: ").append(toIndentedString(idCheckConfigurationName)).append("\n");
+ sb.append(" idCheckConfigurationNameMetadata: ").append(toIndentedString(idCheckConfigurationNameMetadata)).append("\n");
+ sb.append(" idCheckInformationInput: ").append(toIndentedString(idCheckInformationInput)).append("\n");
+ sb.append(" identityVerification: ").append(toIndentedString(identityVerification)).append("\n");
+ sb.append(" inheritEmailNotificationConfiguration: ").append(toIndentedString(inheritEmailNotificationConfiguration)).append("\n");
+ sb.append(" isBulkRecipient: ").append(toIndentedString(isBulkRecipient)).append("\n");
+ sb.append(" isBulkRecipientMetadata: ").append(toIndentedString(isBulkRecipientMetadata)).append("\n");
+ sb.append(" lastName: ").append(toIndentedString(lastName)).append("\n");
+ sb.append(" lastNameMetadata: ").append(toIndentedString(lastNameMetadata)).append("\n");
+ sb.append(" lockedRecipientPhoneAuthEditable: ").append(toIndentedString(lockedRecipientPhoneAuthEditable)).append("\n");
+ sb.append(" lockedRecipientSmsEditable: ").append(toIndentedString(lockedRecipientSmsEditable)).append("\n");
+ sb.append(" name: ").append(toIndentedString(name)).append("\n");
+ sb.append(" nameMetadata: ").append(toIndentedString(nameMetadata)).append("\n");
+ sb.append(" notaryId: ").append(toIndentedString(notaryId)).append("\n");
+ sb.append(" notarySignerEmailSent: ").append(toIndentedString(notarySignerEmailSent)).append("\n");
+ sb.append(" note: ").append(toIndentedString(note)).append("\n");
+ sb.append(" noteMetadata: ").append(toIndentedString(noteMetadata)).append("\n");
+ sb.append(" offlineAttributes: ").append(toIndentedString(offlineAttributes)).append("\n");
+ sb.append(" phoneAuthentication: ").append(toIndentedString(phoneAuthentication)).append("\n");
+ sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n");
+ sb.append(" proofFile: ").append(toIndentedString(proofFile)).append("\n");
+ sb.append(" recipientAttachments: ").append(toIndentedString(recipientAttachments)).append("\n");
+ sb.append(" recipientAuthenticationStatus: ").append(toIndentedString(recipientAuthenticationStatus)).append("\n");
+ sb.append(" recipientFeatureMetadata: ").append(toIndentedString(recipientFeatureMetadata)).append("\n");
+ sb.append(" recipientId: ").append(toIndentedString(recipientId)).append("\n");
+ sb.append(" recipientIdGuid: ").append(toIndentedString(recipientIdGuid)).append("\n");
+ sb.append(" recipientSignatureProviders: ").append(toIndentedString(recipientSignatureProviders)).append("\n");
+ sb.append(" recipientSuppliesTabs: ").append(toIndentedString(recipientSuppliesTabs)).append("\n");
+ sb.append(" recipientType: ").append(toIndentedString(recipientType)).append("\n");
+ sb.append(" recipientTypeMetadata: ").append(toIndentedString(recipientTypeMetadata)).append("\n");
+ sb.append(" requireIdLookup: ").append(toIndentedString(requireIdLookup)).append("\n");
+ sb.append(" requireIdLookupMetadata: ").append(toIndentedString(requireIdLookupMetadata)).append("\n");
+ sb.append(" requireSignerCertificate: ").append(toIndentedString(requireSignerCertificate)).append("\n");
+ sb.append(" requireSignOnPaper: ").append(toIndentedString(requireSignOnPaper)).append("\n");
+ sb.append(" requireUploadSignature: ").append(toIndentedString(requireUploadSignature)).append("\n");
+ sb.append(" roleName: ").append(toIndentedString(roleName)).append("\n");
+ sb.append(" routingOrder: ").append(toIndentedString(routingOrder)).append("\n");
+ sb.append(" routingOrderMetadata: ").append(toIndentedString(routingOrderMetadata)).append("\n");
+ sb.append(" sentDateTime: ").append(toIndentedString(sentDateTime)).append("\n");
+ sb.append(" signatureInfo: ").append(toIndentedString(signatureInfo)).append("\n");
+ sb.append(" signedDateTime: ").append(toIndentedString(signedDateTime)).append("\n");
+ sb.append(" signInEachLocation: ").append(toIndentedString(signInEachLocation)).append("\n");
+ sb.append(" signInEachLocationMetadata: ").append(toIndentedString(signInEachLocationMetadata)).append("\n");
+ sb.append(" signingGroupId: ").append(toIndentedString(signingGroupId)).append("\n");
+ sb.append(" signingGroupIdMetadata: ").append(toIndentedString(signingGroupIdMetadata)).append("\n");
+ sb.append(" signingGroupName: ").append(toIndentedString(signingGroupName)).append("\n");
+ sb.append(" signingGroupUsers: ").append(toIndentedString(signingGroupUsers)).append("\n");
+ sb.append(" smsAuthentication: ").append(toIndentedString(smsAuthentication)).append("\n");
+ sb.append(" socialAuthentications: ").append(toIndentedString(socialAuthentications)).append("\n");
+ sb.append(" status: ").append(toIndentedString(status)).append("\n");
+ sb.append(" statusCode: ").append(toIndentedString(statusCode)).append("\n");
+ sb.append(" suppressEmails: ").append(toIndentedString(suppressEmails)).append("\n");
+ sb.append(" tabs: ").append(toIndentedString(tabs)).append("\n");
+ sb.append(" templateLocked: ").append(toIndentedString(templateLocked)).append("\n");
+ sb.append(" templateRequired: ").append(toIndentedString(templateRequired)).append("\n");
+ sb.append(" totalTabCount: ").append(toIndentedString(totalTabCount)).append("\n");
+ sb.append(" type: ").append(toIndentedString(type)).append("\n");
+ sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
+ sb.append(" webFormRecipientViewId: ").append(toIndentedString(webFormRecipientViewId)).append("\n");
+ sb.append(" witnessFor: ").append(toIndentedString(witnessFor)).append("\n");
+ sb.append(" witnessForGuid: ").append(toIndentedString(witnessForGuid)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces
+ * (except the first line).
+ */
+ private String toIndentedString(java.lang.Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+}
+
diff --git a/src/main/java/com/docusign/esign/model/RadioGroup.java b/src/main/java/com/docusign/esign/model/RadioGroup.java
index 51d0cd4c..0651fe26 100644
--- a/src/main/java/com/docusign/esign/model/RadioGroup.java
+++ b/src/main/java/com/docusign/esign/model/RadioGroup.java
@@ -88,6 +88,9 @@ public class RadioGroup implements Serializable {
@JsonProperty("shareToRecipientsMetadata")
private PropertyMetadata shareToRecipientsMetadata = null;
+ @JsonProperty("source")
+ private String source = null;
+
@JsonProperty("tabType")
private String tabType = null;
@@ -753,6 +756,33 @@ public void setShareToRecipientsMetadata(PropertyMetadata shareToRecipientsMetad
}
+ /**
+ * source.
+ *
+ * @return RadioGroup
+ **/
+ public RadioGroup source(String source) {
+ this.source = source;
+ return this;
+ }
+
+ /**
+ * .
+ * @return source
+ **/
+ @Schema(description = "")
+ public String getSource() {
+ return source;
+ }
+
+ /**
+ * setSource.
+ **/
+ public void setSource(String source) {
+ this.source = source;
+ }
+
+
/**
* tabType.
*
@@ -1060,6 +1090,7 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.sharedMetadata, radioGroup.sharedMetadata) &&
Objects.equals(this.shareToRecipients, radioGroup.shareToRecipients) &&
Objects.equals(this.shareToRecipientsMetadata, radioGroup.shareToRecipientsMetadata) &&
+ Objects.equals(this.source, radioGroup.source) &&
Objects.equals(this.tabType, radioGroup.tabType) &&
Objects.equals(this.tabTypeMetadata, radioGroup.tabTypeMetadata) &&
Objects.equals(this.templateLocked, radioGroup.templateLocked) &&
@@ -1077,7 +1108,7 @@ public boolean equals(java.lang.Object o) {
*/
@Override
public int hashCode() {
- return Objects.hash(conditionalParentLabel, conditionalParentLabelMetadata, conditionalParentValue, conditionalParentValueMetadata, documentId, documentIdMetadata, groupName, groupNameMetadata, originalValue, originalValueMetadata, radios, recipientId, recipientIdGuid, recipientIdGuidMetadata, recipientIdMetadata, requireAll, requireAllMetadata, requireInitialOnSharedChange, requireInitialOnSharedChangeMetadata, shared, sharedMetadata, shareToRecipients, shareToRecipientsMetadata, tabType, tabTypeMetadata, templateLocked, templateLockedMetadata, templateRequired, templateRequiredMetadata, tooltip, tooltipMetadata, value, valueMetadata);
+ return Objects.hash(conditionalParentLabel, conditionalParentLabelMetadata, conditionalParentValue, conditionalParentValueMetadata, documentId, documentIdMetadata, groupName, groupNameMetadata, originalValue, originalValueMetadata, radios, recipientId, recipientIdGuid, recipientIdGuidMetadata, recipientIdMetadata, requireAll, requireAllMetadata, requireInitialOnSharedChange, requireInitialOnSharedChangeMetadata, shared, sharedMetadata, shareToRecipients, shareToRecipientsMetadata, source, tabType, tabTypeMetadata, templateLocked, templateLockedMetadata, templateRequired, templateRequiredMetadata, tooltip, tooltipMetadata, value, valueMetadata);
}
@@ -1112,6 +1143,7 @@ public String toString() {
sb.append(" sharedMetadata: ").append(toIndentedString(sharedMetadata)).append("\n");
sb.append(" shareToRecipients: ").append(toIndentedString(shareToRecipients)).append("\n");
sb.append(" shareToRecipientsMetadata: ").append(toIndentedString(shareToRecipientsMetadata)).append("\n");
+ sb.append(" source: ").append(toIndentedString(source)).append("\n");
sb.append(" tabType: ").append(toIndentedString(tabType)).append("\n");
sb.append(" tabTypeMetadata: ").append(toIndentedString(tabTypeMetadata)).append("\n");
sb.append(" templateLocked: ").append(toIndentedString(templateLocked)).append("\n");
diff --git a/src/main/java/com/docusign/esign/model/Recipients.java b/src/main/java/com/docusign/esign/model/Recipients.java
index 75c6e119..7a1432bd 100644
--- a/src/main/java/com/docusign/esign/model/Recipients.java
+++ b/src/main/java/com/docusign/esign/model/Recipients.java
@@ -10,6 +10,7 @@
import com.docusign.esign.model.InPersonSigner;
import com.docusign.esign.model.Intermediary;
import com.docusign.esign.model.NotaryRecipient;
+import com.docusign.esign.model.NotaryWitness;
import com.docusign.esign.model.Participant;
import com.docusign.esign.model.SealSign;
import com.docusign.esign.model.Signer;
@@ -56,6 +57,9 @@ public class Recipients implements Serializable {
@JsonProperty("notaries")
private java.util.List notaries = null;
+ @JsonProperty("notaryWitnesses")
+ private java.util.List notaryWitnesses = null;
+
@JsonProperty("participants")
private java.util.List participants = null;
@@ -406,6 +410,46 @@ public void setNotaries(java.util.List notaries) {
}
+ /**
+ * notaryWitnesses.
+ *
+ * @return Recipients
+ **/
+ public Recipients notaryWitnesses(java.util.List notaryWitnesses) {
+ this.notaryWitnesses = notaryWitnesses;
+ return this;
+ }
+
+ /**
+ * addNotaryWitnessesItem.
+ *
+ * @return Recipients
+ **/
+ public Recipients addNotaryWitnessesItem(NotaryWitness notaryWitnessesItem) {
+ if (this.notaryWitnesses == null) {
+ this.notaryWitnesses = new java.util.ArrayList<>();
+ }
+ this.notaryWitnesses.add(notaryWitnessesItem);
+ return this;
+ }
+
+ /**
+ * .
+ * @return notaryWitnesses
+ **/
+ @Schema(description = "")
+ public java.util.List getNotaryWitnesses() {
+ return notaryWitnesses;
+ }
+
+ /**
+ * setNotaryWitnesses.
+ **/
+ public void setNotaryWitnesses(java.util.List notaryWitnesses) {
+ this.notaryWitnesses = notaryWitnesses;
+ }
+
+
/**
* participants.
*
@@ -616,6 +660,7 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.inPersonSigners, recipients.inPersonSigners) &&
Objects.equals(this.intermediaries, recipients.intermediaries) &&
Objects.equals(this.notaries, recipients.notaries) &&
+ Objects.equals(this.notaryWitnesses, recipients.notaryWitnesses) &&
Objects.equals(this.participants, recipients.participants) &&
Objects.equals(this.recipientCount, recipients.recipientCount) &&
Objects.equals(this.seals, recipients.seals) &&
@@ -628,7 +673,7 @@ public boolean equals(java.lang.Object o) {
*/
@Override
public int hashCode() {
- return Objects.hash(agents, carbonCopies, certifiedDeliveries, currentRoutingOrder, editors, errorDetails, inPersonSigners, intermediaries, notaries, participants, recipientCount, seals, signers, witnesses);
+ return Objects.hash(agents, carbonCopies, certifiedDeliveries, currentRoutingOrder, editors, errorDetails, inPersonSigners, intermediaries, notaries, notaryWitnesses, participants, recipientCount, seals, signers, witnesses);
}
@@ -649,6 +694,7 @@ public String toString() {
sb.append(" inPersonSigners: ").append(toIndentedString(inPersonSigners)).append("\n");
sb.append(" intermediaries: ").append(toIndentedString(intermediaries)).append("\n");
sb.append(" notaries: ").append(toIndentedString(notaries)).append("\n");
+ sb.append(" notaryWitnesses: ").append(toIndentedString(notaryWitnesses)).append("\n");
sb.append(" participants: ").append(toIndentedString(participants)).append("\n");
sb.append(" recipientCount: ").append(toIndentedString(recipientCount)).append("\n");
sb.append(" seals: ").append(toIndentedString(seals)).append("\n");
diff --git a/src/main/java/com/docusign/esign/model/Reminders.java b/src/main/java/com/docusign/esign/model/Reminders.java
index 23be69fc..a74ff268 100644
--- a/src/main/java/com/docusign/esign/model/Reminders.java
+++ b/src/main/java/com/docusign/esign/model/Reminders.java
@@ -17,6 +17,9 @@
public class Reminders implements Serializable {
private static final long serialVersionUID = 1L;
+ @JsonProperty("maximumReminderCount")
+ private String maximumReminderCount = null;
+
@JsonProperty("reminderDelay")
private String reminderDelay = null;
@@ -27,6 +30,33 @@ public class Reminders implements Serializable {
private String reminderFrequency = null;
+ /**
+ * maximumReminderCount.
+ *
+ * @return Reminders
+ **/
+ public Reminders maximumReminderCount(String maximumReminderCount) {
+ this.maximumReminderCount = maximumReminderCount;
+ return this;
+ }
+
+ /**
+ * .
+ * @return maximumReminderCount
+ **/
+ @Schema(description = "")
+ public String getMaximumReminderCount() {
+ return maximumReminderCount;
+ }
+
+ /**
+ * setMaximumReminderCount.
+ **/
+ public void setMaximumReminderCount(String maximumReminderCount) {
+ this.maximumReminderCount = maximumReminderCount;
+ }
+
+
/**
* reminderDelay.
*
@@ -122,7 +152,8 @@ public boolean equals(java.lang.Object o) {
return false;
}
Reminders reminders = (Reminders) o;
- return Objects.equals(this.reminderDelay, reminders.reminderDelay) &&
+ return Objects.equals(this.maximumReminderCount, reminders.maximumReminderCount) &&
+ Objects.equals(this.reminderDelay, reminders.reminderDelay) &&
Objects.equals(this.reminderEnabled, reminders.reminderEnabled) &&
Objects.equals(this.reminderFrequency, reminders.reminderFrequency);
}
@@ -132,7 +163,7 @@ public boolean equals(java.lang.Object o) {
*/
@Override
public int hashCode() {
- return Objects.hash(reminderDelay, reminderEnabled, reminderFrequency);
+ return Objects.hash(maximumReminderCount, reminderDelay, reminderEnabled, reminderFrequency);
}
@@ -144,6 +175,7 @@ public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Reminders {\n");
+ sb.append(" maximumReminderCount: ").append(toIndentedString(maximumReminderCount)).append("\n");
sb.append(" reminderDelay: ").append(toIndentedString(reminderDelay)).append("\n");
sb.append(" reminderEnabled: ").append(toIndentedString(reminderEnabled)).append("\n");
sb.append(" reminderFrequency: ").append(toIndentedString(reminderFrequency)).append("\n");
diff --git a/src/main/java/com/docusign/esign/model/TemplateRecipients.java b/src/main/java/com/docusign/esign/model/TemplateRecipients.java
index acc193d0..0db98fb6 100644
--- a/src/main/java/com/docusign/esign/model/TemplateRecipients.java
+++ b/src/main/java/com/docusign/esign/model/TemplateRecipients.java
@@ -10,6 +10,7 @@
import com.docusign.esign.model.InPersonSigner;
import com.docusign.esign.model.Intermediary;
import com.docusign.esign.model.NotaryRecipient;
+import com.docusign.esign.model.NotaryWitness;
import com.docusign.esign.model.Participant;
import com.docusign.esign.model.SealSign;
import com.docusign.esign.model.Signer;
@@ -55,6 +56,9 @@ public class TemplateRecipients implements Serializable {
@JsonProperty("notaries")
private java.util.List notaries = null;
+ @JsonProperty("notaryWitnesses")
+ private java.util.List notaryWitnesses = null;
+
@JsonProperty("participants")
private java.util.List participants = null;
@@ -405,6 +409,46 @@ public void setNotaries(java.util.List notaries) {
}
+ /**
+ * notaryWitnesses.
+ *
+ * @return TemplateRecipients
+ **/
+ public TemplateRecipients notaryWitnesses(java.util.List notaryWitnesses) {
+ this.notaryWitnesses = notaryWitnesses;
+ return this;
+ }
+
+ /**
+ * addNotaryWitnessesItem.
+ *
+ * @return TemplateRecipients
+ **/
+ public TemplateRecipients addNotaryWitnessesItem(NotaryWitness notaryWitnessesItem) {
+ if (this.notaryWitnesses == null) {
+ this.notaryWitnesses = new java.util.ArrayList<>();
+ }
+ this.notaryWitnesses.add(notaryWitnessesItem);
+ return this;
+ }
+
+ /**
+ * .
+ * @return notaryWitnesses
+ **/
+ @Schema(description = "")
+ public java.util.List getNotaryWitnesses() {
+ return notaryWitnesses;
+ }
+
+ /**
+ * setNotaryWitnesses.
+ **/
+ public void setNotaryWitnesses(java.util.List notaryWitnesses) {
+ this.notaryWitnesses = notaryWitnesses;
+ }
+
+
/**
* participants.
*
@@ -615,6 +659,7 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.inPersonSigners, templateRecipients.inPersonSigners) &&
Objects.equals(this.intermediaries, templateRecipients.intermediaries) &&
Objects.equals(this.notaries, templateRecipients.notaries) &&
+ Objects.equals(this.notaryWitnesses, templateRecipients.notaryWitnesses) &&
Objects.equals(this.participants, templateRecipients.participants) &&
Objects.equals(this.recipientCount, templateRecipients.recipientCount) &&
Objects.equals(this.seals, templateRecipients.seals) &&
@@ -627,7 +672,7 @@ public boolean equals(java.lang.Object o) {
*/
@Override
public int hashCode() {
- return Objects.hash(agents, carbonCopies, certifiedDeliveries, currentRoutingOrder, editors, errorDetails, inPersonSigners, intermediaries, notaries, participants, recipientCount, seals, signers, witnesses);
+ return Objects.hash(agents, carbonCopies, certifiedDeliveries, currentRoutingOrder, editors, errorDetails, inPersonSigners, intermediaries, notaries, notaryWitnesses, participants, recipientCount, seals, signers, witnesses);
}
@@ -648,6 +693,7 @@ public String toString() {
sb.append(" inPersonSigners: ").append(toIndentedString(inPersonSigners)).append("\n");
sb.append(" intermediaries: ").append(toIndentedString(intermediaries)).append("\n");
sb.append(" notaries: ").append(toIndentedString(notaries)).append("\n");
+ sb.append(" notaryWitnesses: ").append(toIndentedString(notaryWitnesses)).append("\n");
sb.append(" participants: ").append(toIndentedString(participants)).append("\n");
sb.append(" recipientCount: ").append(toIndentedString(recipientCount)).append("\n");
sb.append(" seals: ").append(toIndentedString(seals)).append("\n");