From 51f33ac072609ddb294ebcc8bb3099644830f871 Mon Sep 17 00:00:00 2001 From: Majid Mallis Date: Fri, 11 Feb 2022 20:33:00 -0800 Subject: [PATCH] Version 3.17.1-v2.1-21.4.02.00 release (#226) Co-authored-by: root --- CHANGELOG.md | 7 + .../com/docusign/esign/api/AccountsApi.java | 1138 +++--- .../com/docusign/esign/client/ApiClient.java | 2 +- .../com/docusign/esign/model/ModelList.java | 3459 ----------------- .../java/com/docusign/esign/model/Tabs.java | 133 +- .../docusign/esign/model/TemplateTabs.java | 133 +- 6 files changed, 669 insertions(+), 4203 deletions(-) delete mode 100644 src/main/java/com/docusign/esign/model/ModelList.java diff --git a/CHANGELOG.md b/CHANGELOG.md index 09baf53c..0d2191ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # DocuSign Java Client Changelog See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes. +## [v3.17.1] - eSignature API v2.1-21.4.02.00 - 2022-02-12 +### Changed +- Added support for version v2.1-21.4.02.00 of the DocuSign ESignature API. +- Updated the SDK release version. +## Fixed +- regression issues with List tabs class wrongly named "ModelList". + ## [v3.17.0] - eSignature API v2.1-21.4.02.00 - 2022-02-11 ### Changed - Added support for version v2.1-21.4.02.00 of the DocuSign ESignature API. diff --git a/src/main/java/com/docusign/esign/api/AccountsApi.java b/src/main/java/com/docusign/esign/api/AccountsApi.java index f2af7744..ed03cd66 100644 --- a/src/main/java/com/docusign/esign/api/AccountsApi.java +++ b/src/main/java/com/docusign/esign/api/AccountsApi.java @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { public class CreateOptions { private String previewBillingPlan = null; - + /** * setPreviewBillingPlan method. */ @@ -86,7 +86,7 @@ public String getPreviewBillingPlan() { * Creates new DocuSign service accounts. This is used to create multiple DocuSign accounts with one call. It uses the same information and formats as the normal a [Accounts:create](accounts_create) call with the information included within a `newAccountRequests` element. A maximum of 100 new accounts can be created at one time. Note that the structure of the XML request is slightly different than the JSON request, in that the new account information is included in a `newAccountDefinition` property inside the `newAccountRequests` element. Response The response returns the new account ID, password and the default user information for each newly created account. A 201 code is returned if the call succeeded. While the call may have succeed, some of the individual account requests may have failed. In the case of failures to create the account, an `errorDetails` node is added in the response to each specific request that failed. * @param newAccountDefinition (optional) * @return NewAccountSummary - */ + */ public NewAccountSummary create(NewAccountDefinition newAccountDefinition) throws ApiException { return create(newAccountDefinition, null); } @@ -101,7 +101,7 @@ public NewAccountSummary create(NewAccountDefinition newAccountDefinition) throw */ public NewAccountSummary create(NewAccountDefinition newAccountDefinition, AccountsApi.CreateOptions options) throws ApiException { Object localVarPostBody = newAccountDefinition; - + // create path and map variables String localVarPath = "/v2.1/accounts"; @@ -115,9 +115,9 @@ public NewAccountSummary create(NewAccountDefinition newAccountDefinition, Accou localVarQueryParams.addAll(apiClient.parameterToPair("preview_billing_plan", options.previewBillingPlan)); } - - + + final String[] localVarAccepts = { "application/json" @@ -125,7 +125,7 @@ public NewAccountSummary create(NewAccountDefinition newAccountDefinition, Accou final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -135,7 +135,7 @@ public NewAccountSummary create(NewAccountDefinition newAccountDefinition, Accou return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Adds/updates one or more account signatures. This request may include images in multi-part format. + /// Adds/updates one or more account signatures. This request may include images in multi-part format. /// /** @@ -145,7 +145,7 @@ public NewAccountSummary create(NewAccountDefinition newAccountDefinition, Accou public class CreateAccountSignaturesOptions { private String decodeOnly = null; - + /** * setDecodeOnly method. */ @@ -165,18 +165,18 @@ public String getDecodeOnly() { /** * Adds/updates one or more account signatures. This request may include images in multi-part format.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param accountSignaturesInformation (optional) * @return AccountSignaturesInformation - */ + */ public AccountSignaturesInformation createAccountSignatures(String accountId, AccountSignaturesInformation accountSignaturesInformation) throws ApiException { return createAccountSignatures(accountId, accountSignaturesInformation, null); } /** * Adds/updates one or more account signatures. This request may include images in multi-part format.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param accountSignaturesInformation (optional) * @param options for modifying the method behavior. @@ -185,12 +185,12 @@ public AccountSignaturesInformation createAccountSignatures(String accountId, Ac */ public AccountSignaturesInformation createAccountSignatures(String accountId, AccountSignaturesInformation accountSignaturesInformation, AccountsApi.CreateAccountSignaturesOptions options) throws ApiException { Object localVarPostBody = accountSignaturesInformation; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling createAccountSignatures"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/signatures" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -205,9 +205,9 @@ public AccountSignaturesInformation createAccountSignatures(String accountId, Ac localVarQueryParams.addAll(apiClient.parameterToPair("decode_only", options.decodeOnly)); } - - + + final String[] localVarAccepts = { "application/json" @@ -215,7 +215,7 @@ public AccountSignaturesInformation createAccountSignatures(String accountId, Ac final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -235,12 +235,12 @@ public AccountSignaturesInformation createAccountSignatures(String accountId, Ac */ public BrandsResponse createBrand(String accountId, Brand brand) throws ApiException { Object localVarPostBody = brand; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling createBrand"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -251,11 +251,11 @@ public BrandsResponse createBrand(String accountId, Brand brand) throws ApiExcep java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -263,7 +263,7 @@ public BrandsResponse createBrand(String accountId, Brand brand) throws ApiExcep final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -273,7 +273,7 @@ public BrandsResponse createBrand(String accountId, Brand brand) throws ApiExcep return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Creates an acount custom field. + /// Creates an acount custom field. /// /** @@ -283,7 +283,7 @@ public BrandsResponse createBrand(String accountId, Brand brand) throws ApiExcep public class CreateCustomFieldOptions { private String applyToTemplates = null; - + /** * setApplyToTemplates method. */ @@ -303,18 +303,18 @@ public String getApplyToTemplates() { /** * Creates an acount custom field.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param customField (optional) * @return CustomFields - */ + */ public CustomFields createCustomField(String accountId, CustomField customField) throws ApiException { return createCustomField(accountId, customField, null); } /** * Creates an acount custom field.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param customField (optional) * @param options for modifying the method behavior. @@ -323,12 +323,12 @@ public CustomFields createCustomField(String accountId, CustomField customField) */ public CustomFields createCustomField(String accountId, CustomField customField, AccountsApi.CreateCustomFieldOptions options) throws ApiException { Object localVarPostBody = customField; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling createCustomField"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/custom_fields" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -343,9 +343,9 @@ public CustomFields createCustomField(String accountId, CustomField customField, localVarQueryParams.addAll(apiClient.parameterToPair("apply_to_templates", options.applyToTemplates)); } - - + + final String[] localVarAccepts = { "application/json" @@ -353,7 +353,7 @@ public CustomFields createCustomField(String accountId, CustomField customField, final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -363,7 +363,7 @@ public CustomFields createCustomField(String accountId, CustomField customField, return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Creates a new permission profile in the specified account. + /// Creates a new permission profile in the specified account. /// /** @@ -373,7 +373,7 @@ public CustomFields createCustomField(String accountId, CustomField customField, public class CreatePermissionProfileOptions { private String include = null; - + /** * setInclude method. */ @@ -393,18 +393,18 @@ public String getInclude() { /** * Creates a new permission profile in the specified account.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param permissionProfile (optional) * @return PermissionProfile - */ + */ public PermissionProfile createPermissionProfile(String accountId, PermissionProfile permissionProfile) throws ApiException { return createPermissionProfile(accountId, permissionProfile, null); } /** * Creates a new permission profile in the specified account.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param permissionProfile (optional) * @param options for modifying the method behavior. @@ -413,12 +413,12 @@ public PermissionProfile createPermissionProfile(String accountId, PermissionPro */ public PermissionProfile createPermissionProfile(String accountId, PermissionProfile permissionProfile, AccountsApi.CreatePermissionProfileOptions options) throws ApiException { Object localVarPostBody = permissionProfile; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling createPermissionProfile"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/permission_profiles" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -433,9 +433,9 @@ public PermissionProfile createPermissionProfile(String accountId, PermissionPro localVarQueryParams.addAll(apiClient.parameterToPair("include", options.include)); } - - + + final String[] localVarAccepts = { "application/json" @@ -443,7 +443,7 @@ public PermissionProfile createPermissionProfile(String accountId, PermissionPro final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -461,12 +461,12 @@ public PermissionProfile createPermissionProfile(String accountId, PermissionPro */ public void delete(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling delete"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -477,11 +477,11 @@ public void delete(String accountId) throws ApiException { java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -489,7 +489,7 @@ public void delete(String accountId) throws ApiException { final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -501,24 +501,24 @@ public void delete(String accountId) throws ApiException { /** * Close the specified signature by Id.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param signatureId The ID of the signature being accessed. (required) * @throws ApiException if fails to make API call */ public void deleteAccountSignature(String accountId, String signatureId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling deleteAccountSignature"); } - + // verify the required parameter 'signatureId' is set if (signatureId == null) { throw new ApiException(400, "Missing the required parameter 'signatureId' when calling deleteAccountSignature"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/signatures/{signatureId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -530,11 +530,11 @@ public void deleteAccountSignature(String accountId, String signatureId) throws java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -542,7 +542,7 @@ public void deleteAccountSignature(String accountId, String signatureId) throws final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -554,7 +554,7 @@ public void deleteAccountSignature(String accountId, String signatureId) throws /** * Deletes a signature, initials, or stamps image.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param signatureId The ID of the signature being accessed. (required) * @param imageType One of **signature_image** or **initials_image**. (required) @@ -563,22 +563,22 @@ public void deleteAccountSignature(String accountId, String signatureId) throws */ public AccountSignature deleteAccountSignatureImage(String accountId, String signatureId, String imageType) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling deleteAccountSignatureImage"); } - + // verify the required parameter 'signatureId' is set if (signatureId == null) { throw new ApiException(400, "Missing the required parameter 'signatureId' when calling deleteAccountSignatureImage"); } - + // verify the required parameter 'imageType' is set if (imageType == null) { throw new ApiException(400, "Missing the required parameter 'imageType' when calling deleteAccountSignatureImage"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/signatures/{signatureId}/{imageType}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -591,11 +591,11 @@ public AccountSignature deleteAccountSignatureImage(String accountId, String sig java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -603,7 +603,7 @@ public AccountSignature deleteAccountSignatureImage(String accountId, String sig final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -615,24 +615,24 @@ public AccountSignature deleteAccountSignatureImage(String accountId, String sig /** * Removes a brand.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param brandId The unique identifier of a brand. (required) * @throws ApiException if fails to make API call */ public void deleteBrand(String accountId, String brandId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling deleteBrand"); } - + // verify the required parameter 'brandId' is set if (brandId == null) { throw new ApiException(400, "Missing the required parameter 'brandId' when calling deleteBrand"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands/{brandId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -644,11 +644,11 @@ public void deleteBrand(String accountId, String brandId) throws ApiException { java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -656,7 +656,7 @@ public void deleteBrand(String accountId, String brandId) throws ApiException { final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -668,7 +668,7 @@ public void deleteBrand(String accountId, String brandId) throws ApiException { /** * Delete one branding logo.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param brandId The unique identifier of a brand. (required) * @param logoType One of **Primary**, **Secondary** or **Email**. (required) @@ -676,22 +676,22 @@ public void deleteBrand(String accountId, String brandId) throws ApiException { */ public void deleteBrandLogoByType(String accountId, String brandId, String logoType) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling deleteBrandLogoByType"); } - + // verify the required parameter 'brandId' is set if (brandId == null) { throw new ApiException(400, "Missing the required parameter 'brandId' when calling deleteBrandLogoByType"); } - + // verify the required parameter 'logoType' is set if (logoType == null) { throw new ApiException(400, "Missing the required parameter 'logoType' when calling deleteBrandLogoByType"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands/{brandId}/logos/{logoType}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -704,11 +704,11 @@ public void deleteBrandLogoByType(String accountId, String brandId, String logoT java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -716,7 +716,7 @@ public void deleteBrandLogoByType(String accountId, String brandId, String logoT final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -736,12 +736,12 @@ public void deleteBrandLogoByType(String accountId, String brandId, String logoT */ public BrandsResponse deleteBrands(String accountId, BrandsRequest brandsRequest) throws ApiException { Object localVarPostBody = brandsRequest; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling deleteBrands"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -752,11 +752,11 @@ public BrandsResponse deleteBrands(String accountId, BrandsRequest brandsRequest java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -764,7 +764,7 @@ public BrandsResponse deleteBrands(String accountId, BrandsRequest brandsRequest final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -785,17 +785,17 @@ public BrandsResponse deleteBrands(String accountId, BrandsRequest brandsRequest */ public CaptiveRecipientInformation deleteCaptiveRecipient(String accountId, String recipientPart, CaptiveRecipientInformation captiveRecipientInformation) throws ApiException { Object localVarPostBody = captiveRecipientInformation; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling deleteCaptiveRecipient"); } - + // verify the required parameter 'recipientPart' is set if (recipientPart == null) { throw new ApiException(400, "Missing the required parameter 'recipientPart' when calling deleteCaptiveRecipient"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/captive_recipients/{recipientPart}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -807,11 +807,11 @@ public CaptiveRecipientInformation deleteCaptiveRecipient(String accountId, Stri java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -819,7 +819,7 @@ public CaptiveRecipientInformation deleteCaptiveRecipient(String accountId, Stri final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -829,7 +829,7 @@ public CaptiveRecipientInformation deleteCaptiveRecipient(String accountId, Stri return apiClient.invokeAPI(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Delete an existing account custom field. + /// Delete an existing account custom field. /// /** @@ -839,7 +839,7 @@ public CaptiveRecipientInformation deleteCaptiveRecipient(String accountId, Stri public class DeleteCustomFieldOptions { private String applyToTemplates = null; - + /** * setApplyToTemplates method. */ @@ -859,18 +859,18 @@ public String getApplyToTemplates() { /** * Delete an existing account custom field.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param customFieldId (required) * @return void - */ + */ public void deleteCustomField(String accountId, String customFieldId) throws ApiException { deleteCustomField(accountId, customFieldId, null); } /** * Delete an existing account custom field.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param customFieldId (required) * @param options for modifying the method behavior. @@ -878,17 +878,17 @@ public void deleteCustomField(String accountId, String customFieldId) throws Api */ public void deleteCustomField(String accountId, String customFieldId, AccountsApi.DeleteCustomFieldOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling deleteCustomField"); } - + // verify the required parameter 'customFieldId' is set if (customFieldId == null) { throw new ApiException(400, "Missing the required parameter 'customFieldId' when calling deleteCustomField"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/custom_fields/{customFieldId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -904,9 +904,9 @@ public void deleteCustomField(String accountId, String customFieldId, AccountsAp localVarQueryParams.addAll(apiClient.parameterToPair("apply_to_templates", options.applyToTemplates)); } - - + + final String[] localVarAccepts = { "application/json" @@ -914,7 +914,7 @@ public void deleteCustomField(String accountId, String customFieldId, AccountsAp final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -926,18 +926,18 @@ public void deleteCustomField(String accountId, String customFieldId, AccountsAp /** * Deletes configuration information for the eNote eOriginal integration.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @throws ApiException if fails to make API call */ public void deleteENoteConfiguration(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling deleteENoteConfiguration"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings/enote_configuration" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -948,11 +948,11 @@ public void deleteENoteConfiguration(String accountId) throws ApiException { java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -960,7 +960,7 @@ public void deleteENoteConfiguration(String accountId) throws ApiException { final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -970,7 +970,7 @@ public void deleteENoteConfiguration(String accountId) throws ApiException { apiClient.invokeAPI(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, null); } /// - /// Deletes a permissions profile within the specified account. + /// Deletes a permissions profile within the specified account. /// /** @@ -980,7 +980,7 @@ public void deleteENoteConfiguration(String accountId) throws ApiException { public class DeletePermissionProfileOptions { private String moveUsersTo = null; - + /** * setMoveUsersTo method. */ @@ -1000,18 +1000,18 @@ public String getMoveUsersTo() { /** * Deletes a permissions profile within the specified account.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param permissionProfileId (required) * @return void - */ + */ public void deletePermissionProfile(String accountId, String permissionProfileId) throws ApiException { deletePermissionProfile(accountId, permissionProfileId, null); } /** * Deletes a permissions profile within the specified account.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param permissionProfileId (required) * @param options for modifying the method behavior. @@ -1019,17 +1019,17 @@ public void deletePermissionProfile(String accountId, String permissionProfileId */ public void deletePermissionProfile(String accountId, String permissionProfileId, AccountsApi.DeletePermissionProfileOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling deletePermissionProfile"); } - + // verify the required parameter 'permissionProfileId' is set if (permissionProfileId == null) { throw new ApiException(400, "Missing the required parameter 'permissionProfileId' when calling deletePermissionProfile"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/permission_profiles/{permissionProfileId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -1045,9 +1045,9 @@ public void deletePermissionProfile(String accountId, String permissionProfileId localVarQueryParams.addAll(apiClient.parameterToPair("move_users_to", options.moveUsersTo)); } - - + + final String[] localVarAccepts = { "application/json" @@ -1055,7 +1055,7 @@ public void deletePermissionProfile(String accountId, String permissionProfileId final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1067,19 +1067,19 @@ public void deletePermissionProfile(String accountId, String permissionProfileId /** * Get the list of identity verification options for an account. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return AccountIdentityVerificationResponse * @throws ApiException if fails to make API call */ public AccountIdentityVerificationResponse getAccountIdentityVerification(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getAccountIdentityVerification"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/identity_verification" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -1090,11 +1090,11 @@ public AccountIdentityVerificationResponse getAccountIdentityVerification(String java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -1102,7 +1102,7 @@ public AccountIdentityVerificationResponse getAccountIdentityVerification(String final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1112,7 +1112,7 @@ public AccountIdentityVerificationResponse getAccountIdentityVerification(String return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Retrieves the account information for the specified account. Retrieves the account information for the specified account. **Response** The `canUpgrade` property contains is a Boolean that indicates whether the account can be upgraded through the API. + /// Retrieves the account information for the specified account. Retrieves the account information for the specified account. **Response** The `canUpgrade` property contains is a Boolean that indicates whether the account can be upgraded through the API. /// /** @@ -1122,7 +1122,7 @@ public AccountIdentityVerificationResponse getAccountIdentityVerification(String public class GetAccountInformationOptions { private String includeAccountSettings = null; - + /** * setIncludeAccountSettings method. */ @@ -1142,17 +1142,17 @@ public String getIncludeAccountSettings() { /** * Retrieves the account information for the specified account.. - * Retrieves the account information for the specified account. **Response** The `canUpgrade` property contains is a Boolean that indicates whether the account can be upgraded through the API. + * Retrieves the account information for the specified account. **Response** The `canUpgrade` property contains is a Boolean that indicates whether the account can be upgraded through the API. * @param accountId The external account number (int) or account ID Guid. (required) * @return AccountInformation - */ + */ public AccountInformation getAccountInformation(String accountId) throws ApiException { return getAccountInformation(accountId, null); } /** * Retrieves the account information for the specified account.. - * Retrieves the account information for the specified account. **Response** The `canUpgrade` property contains is a Boolean that indicates whether the account can be upgraded through the API. + * Retrieves the account information for the specified account. **Response** The `canUpgrade` property contains is a Boolean that indicates whether the account can be upgraded through the API. * @param accountId The external account number (int) or account ID Guid. (required) * @param options for modifying the method behavior. * @return AccountInformation @@ -1160,12 +1160,12 @@ public AccountInformation getAccountInformation(String accountId) throws ApiExce */ public AccountInformation getAccountInformation(String accountId, AccountsApi.GetAccountInformationOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getAccountInformation"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -1180,9 +1180,9 @@ public AccountInformation getAccountInformation(String accountId, AccountsApi.Ge localVarQueryParams.addAll(apiClient.parameterToPair("include_account_settings", options.includeAccountSettings)); } - - + + final String[] localVarAccepts = { "application/json" @@ -1190,7 +1190,7 @@ public AccountInformation getAccountInformation(String accountId, AccountsApi.Ge final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1202,7 +1202,7 @@ public AccountInformation getAccountInformation(String accountId, AccountsApi.Ge /** * Returns information about a single signature by specifed signatureId.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param signatureId The ID of the signature being accessed. (required) * @return AccountSignature @@ -1210,17 +1210,17 @@ public AccountInformation getAccountInformation(String accountId, AccountsApi.Ge */ public AccountSignature getAccountSignature(String accountId, String signatureId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getAccountSignature"); } - + // verify the required parameter 'signatureId' is set if (signatureId == null) { throw new ApiException(400, "Missing the required parameter 'signatureId' when calling getAccountSignature"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/signatures/{signatureId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -1232,11 +1232,11 @@ public AccountSignature getAccountSignature(String accountId, String signatureId java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -1244,7 +1244,7 @@ public AccountSignature getAccountSignature(String accountId, String signatureId final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1254,7 +1254,7 @@ public AccountSignature getAccountSignature(String accountId, String signatureId return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Returns a signature, initials, or stamps image. + /// Returns a signature, initials, or stamps image. /// /** @@ -1264,7 +1264,7 @@ public AccountSignature getAccountSignature(String accountId, String signatureId public class GetAccountSignatureImageOptions { private String includeChrome = null; - + /** * setIncludeChrome method. */ @@ -1284,19 +1284,19 @@ public String getIncludeChrome() { /** * Returns a signature, initials, or stamps image.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param signatureId The ID of the signature being accessed. (required) * @param imageType One of **signature_image** or **initials_image**. (required) * @return byte[] - */ + */ public byte[] getAccountSignatureImage(String accountId, String signatureId, String imageType) throws ApiException { return getAccountSignatureImage(accountId, signatureId, imageType, null); } /** * Returns a signature, initials, or stamps image.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param signatureId The ID of the signature being accessed. (required) * @param imageType One of **signature_image** or **initials_image**. (required) @@ -1306,22 +1306,22 @@ public byte[] getAccountSignatureImage(String accountId, String signatureId, Str */ public byte[] getAccountSignatureImage(String accountId, String signatureId, String imageType, AccountsApi.GetAccountSignatureImageOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getAccountSignatureImage"); } - + // verify the required parameter 'signatureId' is set if (signatureId == null) { throw new ApiException(400, "Missing the required parameter 'signatureId' when calling getAccountSignatureImage"); } - + // verify the required parameter 'imageType' is set if (imageType == null) { throw new ApiException(400, "Missing the required parameter 'imageType' when calling getAccountSignatureImage"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/signatures/{signatureId}/{imageType}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -1338,9 +1338,9 @@ public byte[] getAccountSignatureImage(String accountId, String signatureId, Str localVarQueryParams.addAll(apiClient.parameterToPair("include_chrome", options.includeChrome)); } - - + + final String[] localVarAccepts = { "image/gif" @@ -1348,7 +1348,7 @@ public byte[] getAccountSignatureImage(String accountId, String signatureId, Str final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1358,7 +1358,7 @@ public byte[] getAccountSignatureImage(String accountId, String signatureId, Str return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Returns the managed signature definitions for the account + /// Returns the managed signature definitions for the account /// /** @@ -1370,7 +1370,7 @@ public class GetAccountSignaturesOptions private String stampFormat = null; private String stampName = null; private String stampType = null; - + /** * setStampFormat method. */ @@ -1386,7 +1386,7 @@ public void setStampFormat(String stampFormat) { public String getStampFormat() { return this.stampFormat; } - + /** * setStampName method. */ @@ -1402,7 +1402,7 @@ public void setStampName(String stampName) { public String getStampName() { return this.stampName; } - + /** * setStampType method. */ @@ -1422,17 +1422,17 @@ public String getStampType() { /** * Returns the managed signature definitions for the account. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return AccountSignaturesInformation - */ + */ public AccountSignaturesInformation getAccountSignatures(String accountId) throws ApiException { return getAccountSignatures(accountId, null); } /** * Returns the managed signature definitions for the account. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param options for modifying the method behavior. * @return AccountSignaturesInformation @@ -1440,12 +1440,12 @@ public AccountSignaturesInformation getAccountSignatures(String accountId) throw */ public AccountSignaturesInformation getAccountSignatures(String accountId, AccountsApi.GetAccountSignaturesOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getAccountSignatures"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/signatures" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -1464,9 +1464,9 @@ public AccountSignaturesInformation getAccountSignatures(String accountId, Accou localVarQueryParams.addAll(apiClient.parameterToPair("stamp_type", options.stampType)); } - - + + final String[] localVarAccepts = { "application/json" @@ -1474,7 +1474,7 @@ public AccountSignaturesInformation getAccountSignatures(String accountId, Accou final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1486,19 +1486,19 @@ public AccountSignaturesInformation getAccountSignatures(String accountId, Accou /** * Returns tab settings list for specified account. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return TabAccountSettings * @throws ApiException if fails to make API call */ public TabAccountSettings getAccountTabSettings(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getAccountTabSettings"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings/tabs" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -1509,11 +1509,11 @@ public TabAccountSettings getAccountTabSettings(String accountId) throws ApiExce java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -1521,7 +1521,7 @@ public TabAccountSettings getAccountTabSettings(String accountId) throws ApiExce final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1533,19 +1533,19 @@ public TabAccountSettings getAccountTabSettings(String accountId) throws ApiExce /** * Get all payment gateway account for the provided accountId. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return PaymentGatewayAccountsInfo * @throws ApiException if fails to make API call */ public PaymentGatewayAccountsInfo getAllPaymentGatewayAccounts(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getAllPaymentGatewayAccounts"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/payment_gateway_accounts" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -1556,11 +1556,11 @@ public PaymentGatewayAccountsInfo getAllPaymentGatewayAccounts(String accountId) java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -1568,7 +1568,7 @@ public PaymentGatewayAccountsInfo getAllPaymentGatewayAccounts(String accountId) final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1578,7 +1578,7 @@ public PaymentGatewayAccountsInfo getAllPaymentGatewayAccounts(String accountId) return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Gets list of recurring and usage charges for the account. Retrieves the list of recurring and usage charges for the account. This can be used to determine the charge structure and usage of charge plan items. Privileges required: account administrator + /// Gets list of recurring and usage charges for the account. Retrieves the list of recurring and usage charges for the account. This can be used to determine the charge structure and usage of charge plan items. Privileges required: account administrator /// /** @@ -1588,7 +1588,7 @@ public PaymentGatewayAccountsInfo getAllPaymentGatewayAccounts(String accountId) public class GetBillingChargesOptions { private String includeCharges = null; - + /** * setIncludeCharges method. */ @@ -1608,17 +1608,17 @@ public String getIncludeCharges() { /** * Gets list of recurring and usage charges for the account.. - * Retrieves the list of recurring and usage charges for the account. This can be used to determine the charge structure and usage of charge plan items. Privileges required: account administrator + * Retrieves the list of recurring and usage charges for the account. This can be used to determine the charge structure and usage of charge plan items. Privileges required: account administrator * @param accountId The external account number (int) or account ID Guid. (required) * @return BillingChargeResponse - */ + */ public BillingChargeResponse getBillingCharges(String accountId) throws ApiException { return getBillingCharges(accountId, null); } /** * Gets list of recurring and usage charges for the account.. - * Retrieves the list of recurring and usage charges for the account. This can be used to determine the charge structure and usage of charge plan items. Privileges required: account administrator + * Retrieves the list of recurring and usage charges for the account. This can be used to determine the charge structure and usage of charge plan items. Privileges required: account administrator * @param accountId The external account number (int) or account ID Guid. (required) * @param options for modifying the method behavior. * @return BillingChargeResponse @@ -1626,12 +1626,12 @@ public BillingChargeResponse getBillingCharges(String accountId) throws ApiExcep */ public BillingChargeResponse getBillingCharges(String accountId, AccountsApi.GetBillingChargesOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getBillingCharges"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/billing_charges" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -1646,9 +1646,9 @@ public BillingChargeResponse getBillingCharges(String accountId, AccountsApi.Get localVarQueryParams.addAll(apiClient.parameterToPair("include_charges", options.includeCharges)); } - - + + final String[] localVarAccepts = { "application/json" @@ -1656,7 +1656,7 @@ public BillingChargeResponse getBillingCharges(String accountId, AccountsApi.Get final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1666,7 +1666,7 @@ public BillingChargeResponse getBillingCharges(String accountId, AccountsApi.Get return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Get information for a specific brand. + /// Get information for a specific brand. /// /** @@ -1677,7 +1677,7 @@ public class GetBrandOptions { private String includeExternalReferences = null; private String includeLogos = null; - + /** * setIncludeExternalReferences method. */ @@ -1693,7 +1693,7 @@ public void setIncludeExternalReferences(String includeExternalReferences) { public String getIncludeExternalReferences() { return this.includeExternalReferences; } - + /** * setIncludeLogos method. */ @@ -1713,18 +1713,18 @@ public String getIncludeLogos() { /** * Get information for a specific brand.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param brandId The unique identifier of a brand. (required) * @return Brand - */ + */ public Brand getBrand(String accountId, String brandId) throws ApiException { return getBrand(accountId, brandId, null); } /** * Get information for a specific brand.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param brandId The unique identifier of a brand. (required) * @param options for modifying the method behavior. @@ -1733,17 +1733,17 @@ public Brand getBrand(String accountId, String brandId) throws ApiException { */ public Brand getBrand(String accountId, String brandId, AccountsApi.GetBrandOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getBrand"); } - + // verify the required parameter 'brandId' is set if (brandId == null) { throw new ApiException(400, "Missing the required parameter 'brandId' when calling getBrand"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands/{brandId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -1761,9 +1761,9 @@ public Brand getBrand(String accountId, String brandId, AccountsApi.GetBrandOpti localVarQueryParams.addAll(apiClient.parameterToPair("include_logos", options.includeLogos)); } - - + + final String[] localVarAccepts = { "application/json" @@ -1771,7 +1771,7 @@ public Brand getBrand(String accountId, String brandId, AccountsApi.GetBrandOpti final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1783,24 +1783,24 @@ public Brand getBrand(String accountId, String brandId, AccountsApi.GetBrandOpti /** * Export a specific brand.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param brandId The unique identifier of a brand. (required) * @throws ApiException if fails to make API call */ public void getBrandExportFile(String accountId, String brandId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getBrandExportFile"); } - + // verify the required parameter 'brandId' is set if (brandId == null) { throw new ApiException(400, "Missing the required parameter 'brandId' when calling getBrandExportFile"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands/{brandId}/file" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -1812,11 +1812,11 @@ public void getBrandExportFile(String accountId, String brandId) throws ApiExcep java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -1824,7 +1824,7 @@ public void getBrandExportFile(String accountId, String brandId) throws ApiExcep final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1836,7 +1836,7 @@ public void getBrandExportFile(String accountId, String brandId) throws ApiExcep /** * Obtains the specified image for a brand.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param brandId The unique identifier of a brand. (required) * @param logoType One of **Primary**, **Secondary** or **Email**. (required) @@ -1845,22 +1845,22 @@ public void getBrandExportFile(String accountId, String brandId) throws ApiExcep */ public byte[] getBrandLogoByType(String accountId, String brandId, String logoType) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getBrandLogoByType"); } - + // verify the required parameter 'brandId' is set if (brandId == null) { throw new ApiException(400, "Missing the required parameter 'brandId' when calling getBrandLogoByType"); } - + // verify the required parameter 'logoType' is set if (logoType == null) { throw new ApiException(400, "Missing the required parameter 'logoType' when calling getBrandLogoByType"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands/{brandId}/logos/{logoType}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -1873,11 +1873,11 @@ public byte[] getBrandLogoByType(String accountId, String brandId, String logoTy java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "image/png" @@ -1885,7 +1885,7 @@ public byte[] getBrandLogoByType(String accountId, String brandId, String logoTy final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1897,7 +1897,7 @@ public byte[] getBrandLogoByType(String accountId, String brandId, String logoTy /** * Returns the specified account's list of branding resources (metadata).. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param brandId The unique identifier of a brand. (required) * @return BrandResourcesList @@ -1905,17 +1905,17 @@ public byte[] getBrandLogoByType(String accountId, String brandId, String logoTy */ public BrandResourcesList getBrandResources(String accountId, String brandId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getBrandResources"); } - + // verify the required parameter 'brandId' is set if (brandId == null) { throw new ApiException(400, "Missing the required parameter 'brandId' when calling getBrandResources"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands/{brandId}/resources" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -1927,11 +1927,11 @@ public BrandResourcesList getBrandResources(String accountId, String brandId) th java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -1939,7 +1939,7 @@ public BrandResourcesList getBrandResources(String accountId, String brandId) th final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -1949,7 +1949,7 @@ public BrandResourcesList getBrandResources(String accountId, String brandId) th return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Returns the specified branding resource file. + /// Returns the specified branding resource file. /// /** @@ -1960,7 +1960,7 @@ public class GetBrandResourcesByContentTypeOptions { private String langcode = null; private String returnMaster = null; - + /** * setLangcode method. */ @@ -1976,7 +1976,7 @@ public void setLangcode(String langcode) { public String getLangcode() { return this.langcode; } - + /** * setReturnMaster method. */ @@ -1996,19 +1996,19 @@ public String getReturnMaster() { /** * Returns the specified branding resource file.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param brandId The unique identifier of a brand. (required) * @param resourceContentType (required) * @return void - */ + */ public void getBrandResourcesByContentType(String accountId, String brandId, String resourceContentType) throws ApiException { getBrandResourcesByContentType(accountId, brandId, resourceContentType, null); } /** * Returns the specified branding resource file.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param brandId The unique identifier of a brand. (required) * @param resourceContentType (required) @@ -2017,22 +2017,22 @@ public void getBrandResourcesByContentType(String accountId, String brandId, Str */ public void getBrandResourcesByContentType(String accountId, String brandId, String resourceContentType, AccountsApi.GetBrandResourcesByContentTypeOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getBrandResourcesByContentType"); } - + // verify the required parameter 'brandId' is set if (brandId == null) { throw new ApiException(400, "Missing the required parameter 'brandId' when calling getBrandResourcesByContentType"); } - + // verify the required parameter 'resourceContentType' is set if (resourceContentType == null) { throw new ApiException(400, "Missing the required parameter 'resourceContentType' when calling getBrandResourcesByContentType"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands/{brandId}/resources/{resourceContentType}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -2051,9 +2051,9 @@ public void getBrandResourcesByContentType(String accountId, String brandId, Str localVarQueryParams.addAll(apiClient.parameterToPair("return_master", options.returnMaster)); } - - + + final String[] localVarAccepts = { "application/json" @@ -2061,7 +2061,7 @@ public void getBrandResourcesByContentType(String accountId, String brandId, Str final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2073,7 +2073,7 @@ public void getBrandResourcesByContentType(String accountId, String brandId, Str /** * Gets the Electronic Record and Signature Disclosure.. - * Retrieves the Electronic Record and Signature Disclosure, with HTML formatting, for the requested envelope recipient. This might be different than the current account disclosure depending on account settings, such as branding, and when the account disclosure was last updated. An optional query string can be included to return the language for the disclosure. + * Retrieves the Electronic Record and Signature Disclosure, with HTML formatting, for the requested envelope recipient. This might be different than the current account disclosure depending on account settings, such as branding, and when the account disclosure was last updated. An optional query string can be included to return the language for the disclosure. * @param accountId The external account number (int) or account ID Guid. (required) * @param langCode The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required) * @return ConsumerDisclosure @@ -2081,17 +2081,17 @@ public void getBrandResourcesByContentType(String accountId, String brandId, Str */ public ConsumerDisclosure getConsumerDisclosure(String accountId, String langCode) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getConsumerDisclosure"); } - + // verify the required parameter 'langCode' is set if (langCode == null) { throw new ApiException(400, "Missing the required parameter 'langCode' when calling getConsumerDisclosure"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/consumer_disclosure/{langCode}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -2103,11 +2103,11 @@ public ConsumerDisclosure getConsumerDisclosure(String accountId, String langCod java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -2115,7 +2115,7 @@ public ConsumerDisclosure getConsumerDisclosure(String accountId, String langCod final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2135,7 +2135,7 @@ public ConsumerDisclosure getConsumerDisclosure(String accountId, String langCod public class GetConsumerDisclosureDefaultOptions { private String langCode = null; - + /** * setLangCode method. */ @@ -2158,7 +2158,7 @@ public String getLangCode() { * Retrieves the Electronic Record and Signature Disclosure, with HTML formatting, associated with the account. You can use an optional query string to set the language for the disclosure. * @param accountId The external account number (int) or account ID Guid. (required) * @return ConsumerDisclosure - */ + */ public ConsumerDisclosure getConsumerDisclosureDefault(String accountId) throws ApiException { return getConsumerDisclosureDefault(accountId, null); } @@ -2173,12 +2173,12 @@ public ConsumerDisclosure getConsumerDisclosureDefault(String accountId) throws */ public ConsumerDisclosure getConsumerDisclosureDefault(String accountId, AccountsApi.GetConsumerDisclosureDefaultOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getConsumerDisclosureDefault"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/consumer_disclosure" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -2193,9 +2193,9 @@ public ConsumerDisclosure getConsumerDisclosureDefault(String accountId, Account localVarQueryParams.addAll(apiClient.parameterToPair("langCode", options.langCode)); } - - + + final String[] localVarAccepts = { "application/json" @@ -2203,7 +2203,7 @@ public ConsumerDisclosure getConsumerDisclosureDefault(String accountId, Account final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2215,19 +2215,19 @@ public ConsumerDisclosure getConsumerDisclosureDefault(String accountId, Account /** * Returns the configuration information for the eNote eOriginal integration.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return ENoteConfiguration * @throws ApiException if fails to make API call */ public ENoteConfiguration getENoteConfiguration(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getENoteConfiguration"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings/enote_configuration" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -2238,11 +2238,11 @@ public ENoteConfiguration getENoteConfiguration(String accountId) throws ApiExce java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -2250,7 +2250,7 @@ public ENoteConfiguration getENoteConfiguration(String accountId) throws ApiExce final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2262,19 +2262,19 @@ public ENoteConfiguration getENoteConfiguration(String accountId) throws ApiExce /** * Select envelope purge configuration.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return EnvelopePurgeConfiguration * @throws ApiException if fails to make API call */ public EnvelopePurgeConfiguration getEnvelopePurgeConfiguration(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getEnvelopePurgeConfiguration"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings/envelope_purge_configuration" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -2285,11 +2285,11 @@ public EnvelopePurgeConfiguration getEnvelopePurgeConfiguration(String accountId java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -2297,7 +2297,7 @@ public EnvelopePurgeConfiguration getEnvelopePurgeConfiguration(String accountId final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2309,19 +2309,19 @@ public EnvelopePurgeConfiguration getEnvelopePurgeConfiguration(String accountId /** * Retrieves the list of favorited templates for this caller. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return FavoriteTemplatesInfo * @throws ApiException if fails to make API call */ public FavoriteTemplatesInfo getFavoriteTemplates(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getFavoriteTemplates"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/favorite_templates" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -2332,11 +2332,11 @@ public FavoriteTemplatesInfo getFavoriteTemplates(String accountId) throws ApiEx java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -2344,7 +2344,7 @@ public FavoriteTemplatesInfo getFavoriteTemplates(String accountId) throws ApiEx final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2356,19 +2356,19 @@ public FavoriteTemplatesInfo getFavoriteTemplates(String accountId) throws ApiEx /** * Returns default user level settings for a specified account. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return NotificationDefaults * @throws ApiException if fails to make API call */ public NotificationDefaults getNotificationDefaults(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getNotificationDefaults"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings/notification_defaults" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -2379,11 +2379,11 @@ public NotificationDefaults getNotificationDefaults(String accountId) throws Api java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -2391,7 +2391,7 @@ public NotificationDefaults getNotificationDefaults(String accountId) throws Api final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2403,19 +2403,19 @@ public NotificationDefaults getNotificationDefaults(String accountId) throws Api /** * Get the password rules. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return AccountPasswordRules * @throws ApiException if fails to make API call */ public AccountPasswordRules getPasswordRules(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getPasswordRules"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings/password_rules" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -2426,11 +2426,11 @@ public AccountPasswordRules getPasswordRules(String accountId) throws ApiExcepti java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -2438,7 +2438,7 @@ public AccountPasswordRules getPasswordRules(String accountId) throws ApiExcepti final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2450,13 +2450,13 @@ public AccountPasswordRules getPasswordRules(String accountId) throws ApiExcepti /** * Get membership account password rules. - * + * * @return UserPasswordRules * @throws ApiException if fails to make API call */ public UserPasswordRules getPasswordRules_0() throws ApiException { Object localVarPostBody = "{}"; - + // create path and map variables String localVarPath = "/v2.1/current_user/password_rules"; @@ -2466,11 +2466,11 @@ public UserPasswordRules getPasswordRules_0() throws ApiException { java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -2478,7 +2478,7 @@ public UserPasswordRules getPasswordRules_0() throws ApiException { final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2488,7 +2488,7 @@ public UserPasswordRules getPasswordRules_0() throws ApiException { return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Returns a permissions profile in the specified account. + /// Returns a permissions profile in the specified account. /// /** @@ -2498,7 +2498,7 @@ public UserPasswordRules getPasswordRules_0() throws ApiException { public class GetPermissionProfileOptions { private String include = null; - + /** * setInclude method. */ @@ -2518,18 +2518,18 @@ public String getInclude() { /** * Returns a permissions profile in the specified account.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param permissionProfileId (required) * @return PermissionProfile - */ + */ public PermissionProfile getPermissionProfile(String accountId, String permissionProfileId) throws ApiException { return getPermissionProfile(accountId, permissionProfileId, null); } /** * Returns a permissions profile in the specified account.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param permissionProfileId (required) * @param options for modifying the method behavior. @@ -2538,17 +2538,17 @@ public PermissionProfile getPermissionProfile(String accountId, String permissio */ public PermissionProfile getPermissionProfile(String accountId, String permissionProfileId, AccountsApi.GetPermissionProfileOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getPermissionProfile"); } - + // verify the required parameter 'permissionProfileId' is set if (permissionProfileId == null) { throw new ApiException(400, "Missing the required parameter 'permissionProfileId' when calling getPermissionProfile"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/permission_profiles/{permissionProfileId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -2564,9 +2564,9 @@ public PermissionProfile getPermissionProfile(String accountId, String permissio localVarQueryParams.addAll(apiClient.parameterToPair("include", options.include)); } - - + + final String[] localVarAccepts = { "application/json" @@ -2574,7 +2574,7 @@ public PermissionProfile getPermissionProfile(String accountId, String permissio final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2592,7 +2592,7 @@ public PermissionProfile getPermissionProfile(String accountId, String permissio */ public ProvisioningInformation getProvisioning() throws ApiException { Object localVarPostBody = "{}"; - + // create path and map variables String localVarPath = "/v2.1/accounts/provisioning"; @@ -2602,11 +2602,11 @@ public ProvisioningInformation getProvisioning() throws ApiException { java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -2614,7 +2614,7 @@ public ProvisioningInformation getProvisioning() throws ApiException { final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2624,7 +2624,7 @@ public ProvisioningInformation getProvisioning() throws ApiException { return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Returns whether or not the specified email domain is reserved/claimed. + /// Returns whether or not the specified email domain is reserved/claimed. /// /** @@ -2634,7 +2634,7 @@ public ProvisioningInformation getProvisioning() throws ApiException { public class GetReservedDomainExistenceOptions { private String emailDomain = null; - + /** * setEmailDomain method. */ @@ -2654,17 +2654,17 @@ public String getEmailDomain() { /** * Returns whether or not the specified email domain is reserved/claimed.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return ReservedDomainExistence - */ + */ public ReservedDomainExistence getReservedDomainExistence(String accountId) throws ApiException { return getReservedDomainExistence(accountId, null); } /** * Returns whether or not the specified email domain is reserved/claimed.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param options for modifying the method behavior. * @return ReservedDomainExistence @@ -2672,12 +2672,12 @@ public ReservedDomainExistence getReservedDomainExistence(String accountId) thro */ public ReservedDomainExistence getReservedDomainExistence(String accountId, AccountsApi.GetReservedDomainExistenceOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getReservedDomainExistence"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/reserved_domains" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -2692,9 +2692,9 @@ public ReservedDomainExistence getReservedDomainExistence(String accountId, Acco localVarQueryParams.addAll(apiClient.parameterToPair("email_domain", options.emailDomain)); } - - + + final String[] localVarAccepts = { "application/json" @@ -2702,7 +2702,7 @@ public ReservedDomainExistence getReservedDomainExistence(String accountId, Acco final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2714,19 +2714,19 @@ public ReservedDomainExistence getReservedDomainExistence(String accountId, Acco /** * Gets list of supported languages for recipient language setting.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return SupportedLanguages * @throws ApiException if fails to make API call */ public SupportedLanguages getSupportedLanguages(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getSupportedLanguages"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/supported_languages" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -2737,11 +2737,11 @@ public SupportedLanguages getSupportedLanguages(String accountId) throws ApiExce java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -2749,7 +2749,7 @@ public SupportedLanguages getSupportedLanguages(String accountId) throws ApiExce final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2761,19 +2761,19 @@ public SupportedLanguages getSupportedLanguages(String accountId) throws ApiExce /** * Get watermark information.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return Watermark * @throws ApiException if fails to make API call */ public Watermark getWatermark(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getWatermark"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/watermark" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -2784,11 +2784,11 @@ public Watermark getWatermark(String accountId) throws ApiException { java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -2796,7 +2796,7 @@ public Watermark getWatermark(String accountId) throws ApiException { final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2808,7 +2808,7 @@ public Watermark getWatermark(String accountId) throws ApiException { /** * Get watermark preview.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param watermark (optional) * @return Watermark @@ -2816,12 +2816,12 @@ public Watermark getWatermark(String accountId) throws ApiException { */ public Watermark getWatermarkPreview(String accountId, Watermark watermark) throws ApiException { Object localVarPostBody = watermark; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling getWatermarkPreview"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/watermark/preview" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -2832,11 +2832,11 @@ public Watermark getWatermarkPreview(String accountId, Watermark watermark) thro java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -2844,7 +2844,7 @@ public Watermark getWatermarkPreview(String accountId, Watermark watermark) thro final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2865,7 +2865,7 @@ public class ListBrandsOptions { private String excludeDistributorBrand = null; private String includeLogos = null; - + /** * setExcludeDistributorBrand method. */ @@ -2881,7 +2881,7 @@ public void setExcludeDistributorBrand(String excludeDistributorBrand) { public String getExcludeDistributorBrand() { return this.excludeDistributorBrand; } - + /** * setIncludeLogos method. */ @@ -2904,7 +2904,7 @@ public String getIncludeLogos() { * Retrieves the list of brand profiles associated with the account and the default brand profiles. The Account Branding feature (accountSettings properties `canSelfBrandSend` and `canSelfBrandSend`) must be set to **true** for the account to use this call. * @param accountId The external account number (int) or account ID Guid. (required) * @return BrandsResponse - */ + */ public BrandsResponse listBrands(String accountId) throws ApiException { return listBrands(accountId, null); } @@ -2919,12 +2919,12 @@ public BrandsResponse listBrands(String accountId) throws ApiException { */ public BrandsResponse listBrands(String accountId, AccountsApi.ListBrandsOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling listBrands"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -2941,9 +2941,9 @@ public BrandsResponse listBrands(String accountId, AccountsApi.ListBrandsOptions localVarQueryParams.addAll(apiClient.parameterToPair("include_logos", options.includeLogos)); } - - + + final String[] localVarAccepts = { "application/json" @@ -2951,7 +2951,7 @@ public BrandsResponse listBrands(String accountId, AccountsApi.ListBrandsOptions final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -2970,12 +2970,12 @@ public BrandsResponse listBrands(String accountId, AccountsApi.ListBrandsOptions */ public CustomFields listCustomFields(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling listCustomFields"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/custom_fields" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -2986,11 +2986,11 @@ public CustomFields listCustomFields(String accountId) throws ApiException { java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -2998,7 +2998,7 @@ public CustomFields listCustomFields(String accountId) throws ApiException { final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -3018,7 +3018,7 @@ public CustomFields listCustomFields(String accountId) throws ApiException { public class ListPermissionsOptions { private String include = null; - + /** * setInclude method. */ @@ -3041,7 +3041,7 @@ public String getInclude() { * Retrieves a list of Permission Profiles. Permission Profiles are a standard set of user permissions that you can apply to individual users or users in a Group. This makes it easier to manage user permissions for a large number of users, without having to change permissions on a user-by-user basis. Currently, Permission Profiles can only be created and modified in the DocuSign console. * @param accountId The external account number (int) or account ID Guid. (required) * @return PermissionProfileInformation - */ + */ public PermissionProfileInformation listPermissions(String accountId) throws ApiException { return listPermissions(accountId, null); } @@ -3056,12 +3056,12 @@ public PermissionProfileInformation listPermissions(String accountId) throws Api */ public PermissionProfileInformation listPermissions(String accountId, AccountsApi.ListPermissionsOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling listPermissions"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/permission_profiles" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -3076,9 +3076,9 @@ public PermissionProfileInformation listPermissions(String accountId, AccountsAp localVarQueryParams.addAll(apiClient.parameterToPair("include", options.include)); } - - + + final String[] localVarAccepts = { "application/json" @@ -3086,7 +3086,7 @@ public PermissionProfileInformation listPermissions(String accountId, AccountsAp final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -3106,7 +3106,7 @@ public PermissionProfileInformation listPermissions(String accountId, AccountsAp public class ListRecipientNamesByEmailOptions { private String email = null; - + /** * setEmail method. */ @@ -3129,7 +3129,7 @@ public String getEmail() { * Retrieves a list of recipients in the specified account that are associated with a email address supplied in the query string. * @param accountId The external account number (int) or account ID Guid. (required) * @return RecipientNamesResponse - */ + */ public RecipientNamesResponse listRecipientNamesByEmail(String accountId) throws ApiException { return listRecipientNamesByEmail(accountId, null); } @@ -3144,12 +3144,12 @@ public RecipientNamesResponse listRecipientNamesByEmail(String accountId) throws */ public RecipientNamesResponse listRecipientNamesByEmail(String accountId, AccountsApi.ListRecipientNamesByEmailOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling listRecipientNamesByEmail"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/recipient_names" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -3164,9 +3164,9 @@ public RecipientNamesResponse listRecipientNamesByEmail(String accountId, Accoun localVarQueryParams.addAll(apiClient.parameterToPair("email", options.email)); } - - + + final String[] localVarAccepts = { "application/json" @@ -3174,7 +3174,7 @@ public RecipientNamesResponse listRecipientNamesByEmail(String accountId, Accoun final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -3193,12 +3193,12 @@ public RecipientNamesResponse listRecipientNamesByEmail(String accountId, Accoun */ public AccountSettingsInformation listSettings(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling listSettings"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -3209,11 +3209,11 @@ public AccountSettingsInformation listSettings(String accountId) throws ApiExcep java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -3221,7 +3221,7 @@ public AccountSettingsInformation listSettings(String accountId) throws ApiExcep final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -3248,7 +3248,7 @@ public class ListSharedAccessOptions private String shared = null; private String startPosition = null; private String userIds = null; - + /** * setCount method. */ @@ -3264,7 +3264,7 @@ public void setCount(String count) { public String getCount() { return this.count; } - + /** * setEnvelopesNotSharedUserStatus method. */ @@ -3280,7 +3280,7 @@ public void setEnvelopesNotSharedUserStatus(String envelopesNotSharedUserStatus) public String getEnvelopesNotSharedUserStatus() { return this.envelopesNotSharedUserStatus; } - + /** * setFolderIds method. */ @@ -3296,7 +3296,7 @@ public void setFolderIds(String folderIds) { public String getFolderIds() { return this.folderIds; } - + /** * setItemType method. */ @@ -3312,7 +3312,7 @@ public void setItemType(String itemType) { public String getItemType() { return this.itemType; } - + /** * setSearchText method. */ @@ -3328,7 +3328,7 @@ public void setSearchText(String searchText) { public String getSearchText() { return this.searchText; } - + /** * setShared method. */ @@ -3344,7 +3344,7 @@ public void setShared(String shared) { public String getShared() { return this.shared; } - + /** * setStartPosition method. */ @@ -3360,7 +3360,7 @@ public void setStartPosition(String startPosition) { public String getStartPosition() { return this.startPosition; } - + /** * setUserIds method. */ @@ -3383,7 +3383,7 @@ public String getUserIds() { * Reserved: Retrieves shared item status for one or more users and types of items. Users with account administration privileges can retrieve shared access information for all account users. Users without account administrator privileges can only retrieve shared access information for themselves and the returned information is limited to the retrieving the status of all members of the account that are sharing their folders to the user. This is equivalent to setting the shared=shared_from. * @param accountId The external account number (int) or account ID Guid. (required) * @return AccountSharedAccess - */ + */ public AccountSharedAccess listSharedAccess(String accountId) throws ApiException { return listSharedAccess(accountId, null); } @@ -3398,12 +3398,12 @@ public AccountSharedAccess listSharedAccess(String accountId) throws ApiExceptio */ public AccountSharedAccess listSharedAccess(String accountId, AccountsApi.ListSharedAccessOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling listSharedAccess"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/shared_access" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -3432,9 +3432,9 @@ public AccountSharedAccess listSharedAccess(String accountId, AccountsApi.ListSh localVarQueryParams.addAll(apiClient.parameterToPair("user_ids", options.userIds)); } - - + + final String[] localVarAccepts = { "application/json" @@ -3442,7 +3442,7 @@ public AccountSharedAccess listSharedAccess(String accountId, AccountsApi.ListSh final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -3454,19 +3454,19 @@ public AccountSharedAccess listSharedAccess(String accountId, AccountsApi.ListSh /** * Returns Account available signature providers for specified account.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @return AccountSignatureProviders * @throws ApiException if fails to make API call */ public AccountSignatureProviders listSignatureProviders(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling listSignatureProviders"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/signatureProviders" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -3477,11 +3477,11 @@ public AccountSignatureProviders listSignatureProviders(String accountId) throws java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -3489,7 +3489,7 @@ public AccountSignatureProviders listSignatureProviders(String accountId) throws final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -3508,12 +3508,12 @@ public AccountSignatureProviders listSignatureProviders(String accountId) throws */ public FileTypeList listUnsupportedFileTypes(String accountId) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling listUnsupportedFileTypes"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/unsupported_file_types" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -3524,11 +3524,11 @@ public FileTypeList listUnsupportedFileTypes(String accountId) throws ApiExcepti java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -3536,7 +3536,7 @@ public FileTypeList listUnsupportedFileTypes(String accountId) throws ApiExcepti final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -3548,7 +3548,7 @@ public FileTypeList listUnsupportedFileTypes(String accountId) throws ApiExcepti /** * Unfavorite a template. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param favoriteTemplatesInfo (optional) * @return FavoriteTemplatesInfo @@ -3556,12 +3556,12 @@ public FileTypeList listUnsupportedFileTypes(String accountId) throws ApiExcepti */ public FavoriteTemplatesInfo unFavoriteTemplate(String accountId, FavoriteTemplatesInfo favoriteTemplatesInfo) throws ApiException { Object localVarPostBody = favoriteTemplatesInfo; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling unFavoriteTemplate"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/favorite_templates" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -3572,11 +3572,11 @@ public FavoriteTemplatesInfo unFavoriteTemplate(String accountId, FavoriteTempla java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -3584,7 +3584,7 @@ public FavoriteTemplatesInfo unFavoriteTemplate(String accountId, FavoriteTempla final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -3596,7 +3596,7 @@ public FavoriteTemplatesInfo unFavoriteTemplate(String accountId, FavoriteTempla /** * Updates a account signature.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param accountSignaturesInformation (optional) * @return AccountSignaturesInformation @@ -3604,12 +3604,12 @@ public FavoriteTemplatesInfo unFavoriteTemplate(String accountId, FavoriteTempla */ public AccountSignaturesInformation updateAccountSignature(String accountId, AccountSignaturesInformation accountSignaturesInformation) throws ApiException { Object localVarPostBody = accountSignaturesInformation; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateAccountSignature"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/signatures" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -3620,11 +3620,11 @@ public AccountSignaturesInformation updateAccountSignature(String accountId, Acc java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -3632,7 +3632,7 @@ public AccountSignaturesInformation updateAccountSignature(String accountId, Acc final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -3642,7 +3642,7 @@ public AccountSignaturesInformation updateAccountSignature(String accountId, Acc return apiClient.invokeAPI(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Updates a account signature. + /// Updates a account signature. /// /** @@ -3652,7 +3652,7 @@ public AccountSignaturesInformation updateAccountSignature(String accountId, Acc public class UpdateAccountSignatureByIdOptions { private String closeExistingSignature = null; - + /** * setCloseExistingSignature method. */ @@ -3672,19 +3672,19 @@ public String getCloseExistingSignature() { /** * Updates a account signature.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param signatureId The ID of the signature being accessed. (required) * @param accountSignatureDefinition (optional) * @return AccountSignature - */ + */ public AccountSignature updateAccountSignatureById(String accountId, String signatureId, AccountSignatureDefinition accountSignatureDefinition) throws ApiException { return updateAccountSignatureById(accountId, signatureId, accountSignatureDefinition, null); } /** * Updates a account signature.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param signatureId The ID of the signature being accessed. (required) * @param accountSignatureDefinition (optional) @@ -3694,17 +3694,17 @@ public AccountSignature updateAccountSignatureById(String accountId, String sign */ public AccountSignature updateAccountSignatureById(String accountId, String signatureId, AccountSignatureDefinition accountSignatureDefinition, AccountsApi.UpdateAccountSignatureByIdOptions options) throws ApiException { Object localVarPostBody = accountSignatureDefinition; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateAccountSignatureById"); } - + // verify the required parameter 'signatureId' is set if (signatureId == null) { throw new ApiException(400, "Missing the required parameter 'signatureId' when calling updateAccountSignatureById"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/signatures/{signatureId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -3720,9 +3720,9 @@ public AccountSignature updateAccountSignatureById(String accountId, String sign localVarQueryParams.addAll(apiClient.parameterToPair("close_existing_signature", options.closeExistingSignature)); } - - + + final String[] localVarAccepts = { "application/json" @@ -3730,7 +3730,7 @@ public AccountSignature updateAccountSignatureById(String accountId, String sign final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -3740,7 +3740,7 @@ public AccountSignature updateAccountSignatureById(String accountId, String sign return apiClient.invokeAPI(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Sets a signature, initials, or stamps image. + /// Sets a signature, initials, or stamps image. /// /** @@ -3750,7 +3750,7 @@ public AccountSignature updateAccountSignatureById(String accountId, String sign public class UpdateAccountSignatureImageOptions { private String transparentPng = null; - + /** * setTransparentPng method. */ @@ -3770,19 +3770,19 @@ public String getTransparentPng() { /** * Sets a signature, initials, or stamps image.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param signatureId The ID of the signature being accessed. (required) * @param imageType One of **signature_image** or **initials_image**. (required) * @return AccountSignature - */ + */ public AccountSignature updateAccountSignatureImage(String accountId, String signatureId, String imageType) throws ApiException { return updateAccountSignatureImage(accountId, signatureId, imageType, null); } /** * Sets a signature, initials, or stamps image.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param signatureId The ID of the signature being accessed. (required) * @param imageType One of **signature_image** or **initials_image**. (required) @@ -3792,22 +3792,22 @@ public AccountSignature updateAccountSignatureImage(String accountId, String sig */ public AccountSignature updateAccountSignatureImage(String accountId, String signatureId, String imageType, AccountsApi.UpdateAccountSignatureImageOptions options) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateAccountSignatureImage"); } - + // verify the required parameter 'signatureId' is set if (signatureId == null) { throw new ApiException(400, "Missing the required parameter 'signatureId' when calling updateAccountSignatureImage"); } - + // verify the required parameter 'imageType' is set if (imageType == null) { throw new ApiException(400, "Missing the required parameter 'imageType' when calling updateAccountSignatureImage"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/signatures/{signatureId}/{imageType}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -3824,9 +3824,9 @@ public AccountSignature updateAccountSignatureImage(String accountId, String sig localVarQueryParams.addAll(apiClient.parameterToPair("transparent_png", options.transparentPng)); } - - + + final String[] localVarAccepts = { "application/json" @@ -3846,7 +3846,7 @@ public AccountSignature updateAccountSignatureImage(String accountId, String sig /** * Modifies tab settings for specified account. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param tabAccountSettings (optional) * @return TabAccountSettings @@ -3854,12 +3854,12 @@ public AccountSignature updateAccountSignatureImage(String accountId, String sig */ public TabAccountSettings updateAccountTabSettings(String accountId, TabAccountSettings tabAccountSettings) throws ApiException { Object localVarPostBody = tabAccountSettings; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateAccountTabSettings"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings/tabs" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -3870,11 +3870,11 @@ public TabAccountSettings updateAccountTabSettings(String accountId, TabAccountS java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -3882,7 +3882,7 @@ public TabAccountSettings updateAccountTabSettings(String accountId, TabAccountS final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -3894,7 +3894,7 @@ public TabAccountSettings updateAccountTabSettings(String accountId, TabAccountS /** * Updates an existing brand.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param brandId The unique identifier of a brand. (required) * @param brand (optional) @@ -3903,17 +3903,17 @@ public TabAccountSettings updateAccountTabSettings(String accountId, TabAccountS */ public Brand updateBrand(String accountId, String brandId, Brand brand) throws ApiException { Object localVarPostBody = brand; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateBrand"); } - + // verify the required parameter 'brandId' is set if (brandId == null) { throw new ApiException(400, "Missing the required parameter 'brandId' when calling updateBrand"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands/{brandId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -3925,11 +3925,11 @@ public Brand updateBrand(String accountId, String brandId, Brand brand) throws A java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -3937,7 +3937,7 @@ public Brand updateBrand(String accountId, String brandId, Brand brand) throws A final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -3949,7 +3949,7 @@ public Brand updateBrand(String accountId, String brandId, Brand brand) throws A /** * Put one branding logo.. - * + * * @param accountId The external account number (int) or account ID GUID. (required) * @param brandId The ID of the brand. (required) * @param logoType The type of logo. Valid values are: - `primary` - `secondary` - `email` (required) @@ -3958,27 +3958,27 @@ public Brand updateBrand(String accountId, String brandId, Brand brand) throws A */ public void updateBrandLogoByType(String accountId, String brandId, String logoType, byte[] logoFileBytes) throws ApiException { Object localVarPostBody = logoFileBytes; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateBrandLogoByType"); } - + // verify the required parameter 'brandId' is set if (brandId == null) { throw new ApiException(400, "Missing the required parameter 'brandId' when calling updateBrandLogoByType"); } - + // verify the required parameter 'logoType' is set if (logoType == null) { throw new ApiException(400, "Missing the required parameter 'logoType' when calling updateBrandLogoByType"); } - + // verify the required parameter 'logoFileBytes' is set if (logoFileBytes == null) { throw new ApiException(400, "Missing the required parameter 'logoFileBytes' when calling updateBrandLogoByType"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands/{brandId}/logos/{logoType}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -3991,11 +3991,11 @@ public void updateBrandLogoByType(String accountId, String brandId, String logoT java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -4015,7 +4015,7 @@ public void updateBrandLogoByType(String accountId, String brandId, String logoT /** * Uploads a branding resource file.. - * + * * @param accountId The external account number (int) or account ID GUID. (required) * @param brandId The ID of the brand. (required) * @param resourceContentType The type of brand resource file that you are updating. Valid values are: - `sending` - `signing` - `email` - `signing_captive` (required) @@ -4025,27 +4025,27 @@ public void updateBrandLogoByType(String accountId, String brandId, String logoT */ public BrandResources updateBrandResourcesByContentType(String accountId, String brandId, String resourceContentType, byte[] fileXml) throws ApiException { Object localVarPostBody = "{}"; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateBrandResourcesByContentType"); } - + // verify the required parameter 'brandId' is set if (brandId == null) { throw new ApiException(400, "Missing the required parameter 'brandId' when calling updateBrandResourcesByContentType"); } - + // verify the required parameter 'resourceContentType' is set if (resourceContentType == null) { throw new ApiException(400, "Missing the required parameter 'resourceContentType' when calling updateBrandResourcesByContentType"); } - + // verify the required parameter 'fileXml' is set if (fileXml == null) { throw new ApiException(400, "Missing the required parameter 'fileXml' when calling updateBrandResourcesByContentType"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/brands/{brandId}/resources/{resourceContentType}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -4058,9 +4058,9 @@ public BrandResources updateBrandResourcesByContentType(String accountId, String java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - + + if (fileXml != null) { localVarFormParams.put("file.xml", fileXml); @@ -4082,7 +4082,7 @@ public BrandResources updateBrandResourcesByContentType(String accountId, String return apiClient.invokeAPI(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Update Consumer Disclosure. + /// Update Consumer Disclosure. /// /** @@ -4092,7 +4092,7 @@ public BrandResources updateBrandResourcesByContentType(String accountId, String public class UpdateConsumerDisclosureOptions { private String includeMetadata = null; - + /** * setIncludeMetadata method. */ @@ -4112,19 +4112,19 @@ public String getIncludeMetadata() { /** * Update Consumer Disclosure.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param langCode The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required) * @param consumerDisclosure (optional) * @return ConsumerDisclosure - */ + */ public ConsumerDisclosure updateConsumerDisclosure(String accountId, String langCode, ConsumerDisclosure consumerDisclosure) throws ApiException { return updateConsumerDisclosure(accountId, langCode, consumerDisclosure, null); } /** * Update Consumer Disclosure.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param langCode The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required) * @param consumerDisclosure (optional) @@ -4134,17 +4134,17 @@ public ConsumerDisclosure updateConsumerDisclosure(String accountId, String lang */ public ConsumerDisclosure updateConsumerDisclosure(String accountId, String langCode, ConsumerDisclosure consumerDisclosure, AccountsApi.UpdateConsumerDisclosureOptions options) throws ApiException { Object localVarPostBody = consumerDisclosure; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateConsumerDisclosure"); } - + // verify the required parameter 'langCode' is set if (langCode == null) { throw new ApiException(400, "Missing the required parameter 'langCode' when calling updateConsumerDisclosure"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/consumer_disclosure/{langCode}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -4160,9 +4160,9 @@ public ConsumerDisclosure updateConsumerDisclosure(String accountId, String lang localVarQueryParams.addAll(apiClient.parameterToPair("include_metadata", options.includeMetadata)); } - - + + final String[] localVarAccepts = { "application/json" @@ -4170,7 +4170,7 @@ public ConsumerDisclosure updateConsumerDisclosure(String accountId, String lang final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -4180,7 +4180,7 @@ public ConsumerDisclosure updateConsumerDisclosure(String accountId, String lang return apiClient.invokeAPI(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Updates an existing account custom field. + /// Updates an existing account custom field. /// /** @@ -4190,7 +4190,7 @@ public ConsumerDisclosure updateConsumerDisclosure(String accountId, String lang public class UpdateCustomFieldOptions { private String applyToTemplates = null; - + /** * setApplyToTemplates method. */ @@ -4210,19 +4210,19 @@ public String getApplyToTemplates() { /** * Updates an existing account custom field.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param customFieldId (required) * @param customField (optional) * @return CustomFields - */ + */ public CustomFields updateCustomField(String accountId, String customFieldId, CustomField customField) throws ApiException { return updateCustomField(accountId, customFieldId, customField, null); } /** * Updates an existing account custom field.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param customFieldId (required) * @param customField (optional) @@ -4232,17 +4232,17 @@ public CustomFields updateCustomField(String accountId, String customFieldId, Cu */ public CustomFields updateCustomField(String accountId, String customFieldId, CustomField customField, AccountsApi.UpdateCustomFieldOptions options) throws ApiException { Object localVarPostBody = customField; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateCustomField"); } - + // verify the required parameter 'customFieldId' is set if (customFieldId == null) { throw new ApiException(400, "Missing the required parameter 'customFieldId' when calling updateCustomField"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/custom_fields/{customFieldId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -4258,9 +4258,9 @@ public CustomFields updateCustomField(String accountId, String customFieldId, Cu localVarQueryParams.addAll(apiClient.parameterToPair("apply_to_templates", options.applyToTemplates)); } - - + + final String[] localVarAccepts = { "application/json" @@ -4268,7 +4268,7 @@ public CustomFields updateCustomField(String accountId, String customFieldId, Cu final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -4280,7 +4280,7 @@ public CustomFields updateCustomField(String accountId, String customFieldId, Cu /** * Updates configuration information for the eNote eOriginal integration.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param eNoteConfiguration (optional) * @return ENoteConfiguration @@ -4288,12 +4288,12 @@ public CustomFields updateCustomField(String accountId, String customFieldId, Cu */ public ENoteConfiguration updateENoteConfiguration(String accountId, ENoteConfiguration eNoteConfiguration) throws ApiException { Object localVarPostBody = eNoteConfiguration; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateENoteConfiguration"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings/enote_configuration" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -4304,11 +4304,11 @@ public ENoteConfiguration updateENoteConfiguration(String accountId, ENoteConfig java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -4316,7 +4316,7 @@ public ENoteConfiguration updateENoteConfiguration(String accountId, ENoteConfig final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -4328,7 +4328,7 @@ public ENoteConfiguration updateENoteConfiguration(String accountId, ENoteConfig /** * Updates envelope purge configuration.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param envelopePurgeConfiguration (optional) * @return EnvelopePurgeConfiguration @@ -4336,12 +4336,12 @@ public ENoteConfiguration updateENoteConfiguration(String accountId, ENoteConfig */ public EnvelopePurgeConfiguration updateEnvelopePurgeConfiguration(String accountId, EnvelopePurgeConfiguration envelopePurgeConfiguration) throws ApiException { Object localVarPostBody = envelopePurgeConfiguration; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateEnvelopePurgeConfiguration"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings/envelope_purge_configuration" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -4352,11 +4352,11 @@ public EnvelopePurgeConfiguration updateEnvelopePurgeConfiguration(String accoun java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -4364,7 +4364,7 @@ public EnvelopePurgeConfiguration updateEnvelopePurgeConfiguration(String accoun final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -4376,7 +4376,7 @@ public EnvelopePurgeConfiguration updateEnvelopePurgeConfiguration(String accoun /** * Favorites a template. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param favoriteTemplatesInfo (optional) * @return FavoriteTemplatesInfo @@ -4384,12 +4384,12 @@ public EnvelopePurgeConfiguration updateEnvelopePurgeConfiguration(String accoun */ public FavoriteTemplatesInfo updateFavoriteTemplate(String accountId, FavoriteTemplatesInfo favoriteTemplatesInfo) throws ApiException { Object localVarPostBody = favoriteTemplatesInfo; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateFavoriteTemplate"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/favorite_templates" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -4400,11 +4400,11 @@ public FavoriteTemplatesInfo updateFavoriteTemplate(String accountId, FavoriteTe java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -4412,7 +4412,7 @@ public FavoriteTemplatesInfo updateFavoriteTemplate(String accountId, FavoriteTe final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -4424,7 +4424,7 @@ public FavoriteTemplatesInfo updateFavoriteTemplate(String accountId, FavoriteTe /** * Updates default user level settings for a specified account. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param notificationDefaults (optional) * @return NotificationDefaults @@ -4432,12 +4432,12 @@ public FavoriteTemplatesInfo updateFavoriteTemplate(String accountId, FavoriteTe */ public NotificationDefaults updateNotificationDefaults(String accountId, NotificationDefaults notificationDefaults) throws ApiException { Object localVarPostBody = notificationDefaults; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateNotificationDefaults"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings/notification_defaults" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -4448,11 +4448,11 @@ public NotificationDefaults updateNotificationDefaults(String accountId, Notific java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -4460,7 +4460,7 @@ public NotificationDefaults updateNotificationDefaults(String accountId, Notific final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -4472,7 +4472,7 @@ public NotificationDefaults updateNotificationDefaults(String accountId, Notific /** * Update the password rules. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param accountPasswordRules (optional) * @return AccountPasswordRules @@ -4480,12 +4480,12 @@ public NotificationDefaults updateNotificationDefaults(String accountId, Notific */ public AccountPasswordRules updatePasswordRules(String accountId, AccountPasswordRules accountPasswordRules) throws ApiException { Object localVarPostBody = accountPasswordRules; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updatePasswordRules"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings/password_rules" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -4496,11 +4496,11 @@ public AccountPasswordRules updatePasswordRules(String accountId, AccountPasswor java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -4508,7 +4508,7 @@ public AccountPasswordRules updatePasswordRules(String accountId, AccountPasswor final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -4518,7 +4518,7 @@ public AccountPasswordRules updatePasswordRules(String accountId, AccountPasswor return apiClient.invokeAPI(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /// - /// Updates a permission profile within the specified account. + /// Updates a permission profile within the specified account. /// /** @@ -4528,7 +4528,7 @@ public AccountPasswordRules updatePasswordRules(String accountId, AccountPasswor public class UpdatePermissionProfileOptions { private String include = null; - + /** * setInclude method. */ @@ -4548,19 +4548,19 @@ public String getInclude() { /** * Updates a permission profile within the specified account.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param permissionProfileId (required) * @param permissionProfile (optional) * @return PermissionProfile - */ + */ public PermissionProfile updatePermissionProfile(String accountId, String permissionProfileId, PermissionProfile permissionProfile) throws ApiException { return updatePermissionProfile(accountId, permissionProfileId, permissionProfile, null); } /** * Updates a permission profile within the specified account.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param permissionProfileId (required) * @param permissionProfile (optional) @@ -4570,17 +4570,17 @@ public PermissionProfile updatePermissionProfile(String accountId, String permis */ public PermissionProfile updatePermissionProfile(String accountId, String permissionProfileId, PermissionProfile permissionProfile, AccountsApi.UpdatePermissionProfileOptions options) throws ApiException { Object localVarPostBody = permissionProfile; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updatePermissionProfile"); } - + // verify the required parameter 'permissionProfileId' is set if (permissionProfileId == null) { throw new ApiException(400, "Missing the required parameter 'permissionProfileId' when calling updatePermissionProfile"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/permission_profiles/{permissionProfileId}" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())) @@ -4596,9 +4596,9 @@ public PermissionProfile updatePermissionProfile(String accountId, String permis localVarQueryParams.addAll(apiClient.parameterToPair("include", options.include)); } - - + + final String[] localVarAccepts = { "application/json" @@ -4606,7 +4606,7 @@ public PermissionProfile updatePermissionProfile(String accountId, String permis final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -4625,12 +4625,12 @@ public PermissionProfile updatePermissionProfile(String accountId, String permis */ public void updateSettings(String accountId, AccountSettingsInformation accountSettingsInformation) throws ApiException { Object localVarPostBody = accountSettingsInformation; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateSettings"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/settings" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -4641,11 +4641,11 @@ public void updateSettings(String accountId, AccountSettingsInformation accountS java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -4653,7 +4653,7 @@ public void updateSettings(String accountId, AccountSettingsInformation accountS final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -4675,7 +4675,7 @@ public class UpdateSharedAccessOptions private String itemType = null; private String preserveExistingSharedAccess = null; private String userIds = null; - + /** * setItemType method. */ @@ -4691,7 +4691,7 @@ public void setItemType(String itemType) { public String getItemType() { return this.itemType; } - + /** * setPreserveExistingSharedAccess method. */ @@ -4707,7 +4707,7 @@ public void setPreserveExistingSharedAccess(String preserveExistingSharedAccess) public String getPreserveExistingSharedAccess() { return this.preserveExistingSharedAccess; } - + /** * setUserIds method. */ @@ -4731,7 +4731,7 @@ public String getUserIds() { * @param accountId The external account number (int) or account ID Guid. (required) * @param accountSharedAccess (optional) * @return AccountSharedAccess - */ + */ public AccountSharedAccess updateSharedAccess(String accountId, AccountSharedAccess accountSharedAccess) throws ApiException { return updateSharedAccess(accountId, accountSharedAccess, null); } @@ -4747,12 +4747,12 @@ public AccountSharedAccess updateSharedAccess(String accountId, AccountSharedAcc */ public AccountSharedAccess updateSharedAccess(String accountId, AccountSharedAccess accountSharedAccess, AccountsApi.UpdateSharedAccessOptions options) throws ApiException { Object localVarPostBody = accountSharedAccess; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateSharedAccess"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/shared_access" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -4771,9 +4771,9 @@ public AccountSharedAccess updateSharedAccess(String accountId, AccountSharedAcc localVarQueryParams.addAll(apiClient.parameterToPair("user_ids", options.userIds)); } - - + + final String[] localVarAccepts = { "application/json" @@ -4781,7 +4781,7 @@ public AccountSharedAccess updateSharedAccess(String accountId, AccountSharedAcc final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); @@ -4793,7 +4793,7 @@ public AccountSharedAccess updateSharedAccess(String accountId, AccountSharedAcc /** * Update watermark information.. - * + * * @param accountId The external account number (int) or account ID Guid. (required) * @param watermark (optional) * @return Watermark @@ -4801,12 +4801,12 @@ public AccountSharedAccess updateSharedAccess(String accountId, AccountSharedAcc */ public Watermark updateWatermark(String accountId, Watermark watermark) throws ApiException { Object localVarPostBody = watermark; - + // verify the required parameter 'accountId' is set if (accountId == null) { throw new ApiException(400, "Missing the required parameter 'accountId' when calling updateWatermark"); } - + // create path and map variables String localVarPath = "/v2.1/accounts/{accountId}/watermark" .replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString())); @@ -4817,11 +4817,11 @@ public Watermark updateWatermark(String accountId, Watermark watermark) throws A java.util.Map localVarHeaderParams = new java.util.HashMap(); java.util.Map localVarFormParams = new java.util.HashMap(); - - - + + + final String[] localVarAccepts = { "application/json" @@ -4829,7 +4829,7 @@ public Watermark updateWatermark(String accountId, Watermark watermark) throws A final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); final String[] localVarContentTypes = { - + }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); diff --git a/src/main/java/com/docusign/esign/client/ApiClient.java b/src/main/java/com/docusign/esign/client/ApiClient.java index 269b6318..8fb0786a 100644 --- a/src/main/java/com/docusign/esign/client/ApiClient.java +++ b/src/main/java/com/docusign/esign/client/ApiClient.java @@ -94,7 +94,7 @@ public ApiClient() { this.dateFormat = new RFC3339DateFormat(); // Set default User-Agent. - setUserAgent("Swagger-Codegen/3.17.0/java"); + setUserAgent("Swagger-Codegen/3.17.1/java"); // Setup authentications (key: authentication name, value: authentication). authentications = new HashMap(); diff --git a/src/main/java/com/docusign/esign/model/ModelList.java b/src/main/java/com/docusign/esign/model/ModelList.java deleted file mode 100644 index 0df35f0b..00000000 --- a/src/main/java/com/docusign/esign/model/ModelList.java +++ /dev/null @@ -1,3459 +0,0 @@ -package com.docusign.esign.model; - -import java.util.Objects; -import java.util.Arrays; -import com.docusign.esign.model.ErrorDetails; -import com.docusign.esign.model.ListItem; -import com.docusign.esign.model.LocalePolicyTab; -import com.docusign.esign.model.MergeField; -import com.docusign.esign.model.PropertyMetadata; -import com.docusign.esign.model.SmartContractInformation; -import com.fasterxml.jackson.annotation.JsonProperty; -import com.fasterxml.jackson.annotation.JsonCreator; -import com.fasterxml.jackson.annotation.JsonValue; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; - -/** - * ModelList. - * - */ - -public class ModelList { - @JsonProperty("anchorAllowWhiteSpaceInCharacters") - private String anchorAllowWhiteSpaceInCharacters = null; - - @JsonProperty("anchorAllowWhiteSpaceInCharactersMetadata") - private PropertyMetadata anchorAllowWhiteSpaceInCharactersMetadata = null; - - @JsonProperty("anchorCaseSensitive") - private String anchorCaseSensitive = null; - - @JsonProperty("anchorCaseSensitiveMetadata") - private PropertyMetadata anchorCaseSensitiveMetadata = null; - - @JsonProperty("anchorHorizontalAlignment") - private String anchorHorizontalAlignment = null; - - @JsonProperty("anchorHorizontalAlignmentMetadata") - private PropertyMetadata anchorHorizontalAlignmentMetadata = null; - - @JsonProperty("anchorIgnoreIfNotPresent") - private String anchorIgnoreIfNotPresent = null; - - @JsonProperty("anchorIgnoreIfNotPresentMetadata") - private PropertyMetadata anchorIgnoreIfNotPresentMetadata = null; - - @JsonProperty("anchorMatchWholeWord") - private String anchorMatchWholeWord = null; - - @JsonProperty("anchorMatchWholeWordMetadata") - private PropertyMetadata anchorMatchWholeWordMetadata = null; - - @JsonProperty("anchorString") - private String anchorString = null; - - @JsonProperty("anchorStringMetadata") - private PropertyMetadata anchorStringMetadata = null; - - @JsonProperty("anchorTabProcessorVersion") - private String anchorTabProcessorVersion = null; - - @JsonProperty("anchorTabProcessorVersionMetadata") - private PropertyMetadata anchorTabProcessorVersionMetadata = null; - - @JsonProperty("anchorUnits") - private String anchorUnits = null; - - @JsonProperty("anchorUnitsMetadata") - private PropertyMetadata anchorUnitsMetadata = null; - - @JsonProperty("anchorXOffset") - private String anchorXOffset = null; - - @JsonProperty("anchorXOffsetMetadata") - private PropertyMetadata anchorXOffsetMetadata = null; - - @JsonProperty("anchorYOffset") - private String anchorYOffset = null; - - @JsonProperty("anchorYOffsetMetadata") - private PropertyMetadata anchorYOffsetMetadata = null; - - @JsonProperty("bold") - private String bold = null; - - @JsonProperty("boldMetadata") - private PropertyMetadata boldMetadata = null; - - @JsonProperty("conditionalParentLabel") - private String conditionalParentLabel = null; - - @JsonProperty("conditionalParentLabelMetadata") - private PropertyMetadata conditionalParentLabelMetadata = null; - - @JsonProperty("conditionalParentValue") - private String conditionalParentValue = null; - - @JsonProperty("conditionalParentValueMetadata") - private PropertyMetadata conditionalParentValueMetadata = null; - - @JsonProperty("customTabId") - private String customTabId = null; - - @JsonProperty("customTabIdMetadata") - private PropertyMetadata customTabIdMetadata = null; - - @JsonProperty("documentId") - private String documentId = null; - - @JsonProperty("documentIdMetadata") - private PropertyMetadata documentIdMetadata = null; - - @JsonProperty("errorDetails") - private ErrorDetails errorDetails = null; - - @JsonProperty("font") - private String font = null; - - @JsonProperty("fontColor") - private String fontColor = null; - - @JsonProperty("fontColorMetadata") - private PropertyMetadata fontColorMetadata = null; - - @JsonProperty("fontMetadata") - private PropertyMetadata fontMetadata = null; - - @JsonProperty("fontSize") - private String fontSize = null; - - @JsonProperty("fontSizeMetadata") - private PropertyMetadata fontSizeMetadata = null; - - @JsonProperty("formOrder") - private String formOrder = null; - - @JsonProperty("formOrderMetadata") - private PropertyMetadata formOrderMetadata = null; - - @JsonProperty("formPageLabel") - private String formPageLabel = null; - - @JsonProperty("formPageLabelMetadata") - private PropertyMetadata formPageLabelMetadata = null; - - @JsonProperty("formPageNumber") - private String formPageNumber = null; - - @JsonProperty("formPageNumberMetadata") - private PropertyMetadata formPageNumberMetadata = null; - - @JsonProperty("height") - private String height = null; - - @JsonProperty("heightMetadata") - private PropertyMetadata heightMetadata = null; - - @JsonProperty("italic") - private String italic = null; - - @JsonProperty("italicMetadata") - private PropertyMetadata italicMetadata = null; - - @JsonProperty("listItems") - private java.util.List listItems = null; - - @JsonProperty("listSelectedValue") - private String listSelectedValue = null; - - @JsonProperty("listSelectedValueMetadata") - private PropertyMetadata listSelectedValueMetadata = null; - - @JsonProperty("localePolicy") - private LocalePolicyTab localePolicy = null; - - @JsonProperty("locked") - private String locked = null; - - @JsonProperty("lockedMetadata") - private PropertyMetadata lockedMetadata = null; - - @JsonProperty("mergeField") - private MergeField mergeField = null; - - @JsonProperty("mergeFieldXml") - private String mergeFieldXml = null; - - @JsonProperty("originalValue") - private String originalValue = null; - - @JsonProperty("originalValueMetadata") - private PropertyMetadata originalValueMetadata = null; - - @JsonProperty("pageNumber") - private String pageNumber = null; - - @JsonProperty("pageNumberMetadata") - private PropertyMetadata pageNumberMetadata = null; - - @JsonProperty("recipientId") - private String recipientId = null; - - @JsonProperty("recipientIdGuid") - private String recipientIdGuid = null; - - @JsonProperty("recipientIdGuidMetadata") - private PropertyMetadata recipientIdGuidMetadata = null; - - @JsonProperty("recipientIdMetadata") - private PropertyMetadata recipientIdMetadata = null; - - @JsonProperty("requireAll") - private String requireAll = null; - - @JsonProperty("requireAllMetadata") - private PropertyMetadata requireAllMetadata = null; - - @JsonProperty("required") - private String required = null; - - @JsonProperty("requiredMetadata") - private PropertyMetadata requiredMetadata = null; - - @JsonProperty("requireInitialOnSharedChange") - private String requireInitialOnSharedChange = null; - - @JsonProperty("requireInitialOnSharedChangeMetadata") - private PropertyMetadata requireInitialOnSharedChangeMetadata = null; - - @JsonProperty("senderRequired") - private String senderRequired = null; - - @JsonProperty("senderRequiredMetadata") - private PropertyMetadata senderRequiredMetadata = null; - - @JsonProperty("shared") - private String shared = null; - - @JsonProperty("sharedMetadata") - private PropertyMetadata sharedMetadata = null; - - @JsonProperty("shareToRecipients") - private String shareToRecipients = null; - - @JsonProperty("shareToRecipientsMetadata") - private PropertyMetadata shareToRecipientsMetadata = null; - - @JsonProperty("smartContractInformation") - private SmartContractInformation smartContractInformation = null; - - @JsonProperty("source") - private String source = null; - - @JsonProperty("status") - private String status = null; - - @JsonProperty("statusMetadata") - private PropertyMetadata statusMetadata = null; - - @JsonProperty("tabGroupLabels") - private java.util.List tabGroupLabels = null; - - @JsonProperty("tabGroupLabelsMetadata") - private PropertyMetadata tabGroupLabelsMetadata = null; - - @JsonProperty("tabId") - private String tabId = null; - - @JsonProperty("tabIdMetadata") - private PropertyMetadata tabIdMetadata = null; - - @JsonProperty("tabLabel") - private String tabLabel = null; - - @JsonProperty("tabLabelMetadata") - private PropertyMetadata tabLabelMetadata = null; - - @JsonProperty("tabOrder") - private String tabOrder = null; - - @JsonProperty("tabOrderMetadata") - private PropertyMetadata tabOrderMetadata = null; - - @JsonProperty("tabType") - private String tabType = null; - - @JsonProperty("tabTypeMetadata") - private PropertyMetadata tabTypeMetadata = null; - - @JsonProperty("templateLocked") - private String templateLocked = null; - - @JsonProperty("templateLockedMetadata") - private PropertyMetadata templateLockedMetadata = null; - - @JsonProperty("templateRequired") - private String templateRequired = null; - - @JsonProperty("templateRequiredMetadata") - private PropertyMetadata templateRequiredMetadata = null; - - @JsonProperty("tooltip") - private String tooltip = null; - - @JsonProperty("toolTipMetadata") - private PropertyMetadata toolTipMetadata = null; - - @JsonProperty("underline") - private String underline = null; - - @JsonProperty("underlineMetadata") - private PropertyMetadata underlineMetadata = null; - - @JsonProperty("value") - private String value = null; - - @JsonProperty("valueMetadata") - private PropertyMetadata valueMetadata = null; - - @JsonProperty("width") - private String width = null; - - @JsonProperty("widthMetadata") - private PropertyMetadata widthMetadata = null; - - @JsonProperty("xPosition") - private String xPosition = null; - - @JsonProperty("xPositionMetadata") - private PropertyMetadata xPositionMetadata = null; - - @JsonProperty("yPosition") - private String yPosition = null; - - @JsonProperty("yPositionMetadata") - private PropertyMetadata yPositionMetadata = null; - - - /** - * anchorAllowWhiteSpaceInCharacters. - * - * @return ModelList - **/ - public ModelList anchorAllowWhiteSpaceInCharacters(String anchorAllowWhiteSpaceInCharacters) { - this.anchorAllowWhiteSpaceInCharacters = anchorAllowWhiteSpaceInCharacters; - return this; - } - - /** - * . - * @return anchorAllowWhiteSpaceInCharacters - **/ - @ApiModelProperty(value = "") - public String getAnchorAllowWhiteSpaceInCharacters() { - return anchorAllowWhiteSpaceInCharacters; - } - - /** - * setAnchorAllowWhiteSpaceInCharacters. - **/ - public void setAnchorAllowWhiteSpaceInCharacters(String anchorAllowWhiteSpaceInCharacters) { - this.anchorAllowWhiteSpaceInCharacters = anchorAllowWhiteSpaceInCharacters; - } - - - /** - * anchorAllowWhiteSpaceInCharactersMetadata. - * - * @return ModelList - **/ - public ModelList anchorAllowWhiteSpaceInCharactersMetadata(PropertyMetadata anchorAllowWhiteSpaceInCharactersMetadata) { - this.anchorAllowWhiteSpaceInCharactersMetadata = anchorAllowWhiteSpaceInCharactersMetadata; - return this; - } - - /** - * Get anchorAllowWhiteSpaceInCharactersMetadata. - * @return anchorAllowWhiteSpaceInCharactersMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getAnchorAllowWhiteSpaceInCharactersMetadata() { - return anchorAllowWhiteSpaceInCharactersMetadata; - } - - /** - * setAnchorAllowWhiteSpaceInCharactersMetadata. - **/ - public void setAnchorAllowWhiteSpaceInCharactersMetadata(PropertyMetadata anchorAllowWhiteSpaceInCharactersMetadata) { - this.anchorAllowWhiteSpaceInCharactersMetadata = anchorAllowWhiteSpaceInCharactersMetadata; - } - - - /** - * anchorCaseSensitive. - * - * @return ModelList - **/ - public ModelList anchorCaseSensitive(String anchorCaseSensitive) { - this.anchorCaseSensitive = anchorCaseSensitive; - return this; - } - - /** - * When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**.. - * @return anchorCaseSensitive - **/ - @ApiModelProperty(value = "When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**.") - public String getAnchorCaseSensitive() { - return anchorCaseSensitive; - } - - /** - * setAnchorCaseSensitive. - **/ - public void setAnchorCaseSensitive(String anchorCaseSensitive) { - this.anchorCaseSensitive = anchorCaseSensitive; - } - - - /** - * anchorCaseSensitiveMetadata. - * - * @return ModelList - **/ - public ModelList anchorCaseSensitiveMetadata(PropertyMetadata anchorCaseSensitiveMetadata) { - this.anchorCaseSensitiveMetadata = anchorCaseSensitiveMetadata; - return this; - } - - /** - * Get anchorCaseSensitiveMetadata. - * @return anchorCaseSensitiveMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getAnchorCaseSensitiveMetadata() { - return anchorCaseSensitiveMetadata; - } - - /** - * setAnchorCaseSensitiveMetadata. - **/ - public void setAnchorCaseSensitiveMetadata(PropertyMetadata anchorCaseSensitiveMetadata) { - this.anchorCaseSensitiveMetadata = anchorCaseSensitiveMetadata; - } - - - /** - * anchorHorizontalAlignment. - * - * @return ModelList - **/ - public ModelList anchorHorizontalAlignment(String anchorHorizontalAlignment) { - this.anchorHorizontalAlignment = anchorHorizontalAlignment; - return this; - } - - /** - * Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**.. - * @return anchorHorizontalAlignment - **/ - @ApiModelProperty(value = "Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**.") - public String getAnchorHorizontalAlignment() { - return anchorHorizontalAlignment; - } - - /** - * setAnchorHorizontalAlignment. - **/ - public void setAnchorHorizontalAlignment(String anchorHorizontalAlignment) { - this.anchorHorizontalAlignment = anchorHorizontalAlignment; - } - - - /** - * anchorHorizontalAlignmentMetadata. - * - * @return ModelList - **/ - public ModelList anchorHorizontalAlignmentMetadata(PropertyMetadata anchorHorizontalAlignmentMetadata) { - this.anchorHorizontalAlignmentMetadata = anchorHorizontalAlignmentMetadata; - return this; - } - - /** - * Get anchorHorizontalAlignmentMetadata. - * @return anchorHorizontalAlignmentMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getAnchorHorizontalAlignmentMetadata() { - return anchorHorizontalAlignmentMetadata; - } - - /** - * setAnchorHorizontalAlignmentMetadata. - **/ - public void setAnchorHorizontalAlignmentMetadata(PropertyMetadata anchorHorizontalAlignmentMetadata) { - this.anchorHorizontalAlignmentMetadata = anchorHorizontalAlignmentMetadata; - } - - - /** - * anchorIgnoreIfNotPresent. - * - * @return ModelList - **/ - public ModelList anchorIgnoreIfNotPresent(String anchorIgnoreIfNotPresent) { - this.anchorIgnoreIfNotPresent = anchorIgnoreIfNotPresent; - return this; - } - - /** - * When set to **true**, this tab is ignored if anchorString is not found in the document.. - * @return anchorIgnoreIfNotPresent - **/ - @ApiModelProperty(value = "When set to **true**, this tab is ignored if anchorString is not found in the document.") - public String getAnchorIgnoreIfNotPresent() { - return anchorIgnoreIfNotPresent; - } - - /** - * setAnchorIgnoreIfNotPresent. - **/ - public void setAnchorIgnoreIfNotPresent(String anchorIgnoreIfNotPresent) { - this.anchorIgnoreIfNotPresent = anchorIgnoreIfNotPresent; - } - - - /** - * anchorIgnoreIfNotPresentMetadata. - * - * @return ModelList - **/ - public ModelList anchorIgnoreIfNotPresentMetadata(PropertyMetadata anchorIgnoreIfNotPresentMetadata) { - this.anchorIgnoreIfNotPresentMetadata = anchorIgnoreIfNotPresentMetadata; - return this; - } - - /** - * Get anchorIgnoreIfNotPresentMetadata. - * @return anchorIgnoreIfNotPresentMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getAnchorIgnoreIfNotPresentMetadata() { - return anchorIgnoreIfNotPresentMetadata; - } - - /** - * setAnchorIgnoreIfNotPresentMetadata. - **/ - public void setAnchorIgnoreIfNotPresentMetadata(PropertyMetadata anchorIgnoreIfNotPresentMetadata) { - this.anchorIgnoreIfNotPresentMetadata = anchorIgnoreIfNotPresentMetadata; - } - - - /** - * anchorMatchWholeWord. - * - * @return ModelList - **/ - public ModelList anchorMatchWholeWord(String anchorMatchWholeWord) { - this.anchorMatchWholeWord = anchorMatchWholeWord; - return this; - } - - /** - * When set to **true**, the anchor string in this tab matches whole words only (strings embedded in other strings are ignored.) The default value is **true**.. - * @return anchorMatchWholeWord - **/ - @ApiModelProperty(value = "When set to **true**, the anchor string in this tab matches whole words only (strings embedded in other strings are ignored.) The default value is **true**.") - public String getAnchorMatchWholeWord() { - return anchorMatchWholeWord; - } - - /** - * setAnchorMatchWholeWord. - **/ - public void setAnchorMatchWholeWord(String anchorMatchWholeWord) { - this.anchorMatchWholeWord = anchorMatchWholeWord; - } - - - /** - * anchorMatchWholeWordMetadata. - * - * @return ModelList - **/ - public ModelList anchorMatchWholeWordMetadata(PropertyMetadata anchorMatchWholeWordMetadata) { - this.anchorMatchWholeWordMetadata = anchorMatchWholeWordMetadata; - return this; - } - - /** - * Get anchorMatchWholeWordMetadata. - * @return anchorMatchWholeWordMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getAnchorMatchWholeWordMetadata() { - return anchorMatchWholeWordMetadata; - } - - /** - * setAnchorMatchWholeWordMetadata. - **/ - public void setAnchorMatchWholeWordMetadata(PropertyMetadata anchorMatchWholeWordMetadata) { - this.anchorMatchWholeWordMetadata = anchorMatchWholeWordMetadata; - } - - - /** - * anchorString. - * - * @return ModelList - **/ - public ModelList anchorString(String anchorString) { - this.anchorString = anchorString; - return this; - } - - /** - * Anchor text information for a radio button.. - * @return anchorString - **/ - @ApiModelProperty(value = "Anchor text information for a radio button.") - public String getAnchorString() { - return anchorString; - } - - /** - * setAnchorString. - **/ - public void setAnchorString(String anchorString) { - this.anchorString = anchorString; - } - - - /** - * anchorStringMetadata. - * - * @return ModelList - **/ - public ModelList anchorStringMetadata(PropertyMetadata anchorStringMetadata) { - this.anchorStringMetadata = anchorStringMetadata; - return this; - } - - /** - * Get anchorStringMetadata. - * @return anchorStringMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getAnchorStringMetadata() { - return anchorStringMetadata; - } - - /** - * setAnchorStringMetadata. - **/ - public void setAnchorStringMetadata(PropertyMetadata anchorStringMetadata) { - this.anchorStringMetadata = anchorStringMetadata; - } - - - /** - * anchorTabProcessorVersion. - * - * @return ModelList - **/ - public ModelList anchorTabProcessorVersion(String anchorTabProcessorVersion) { - this.anchorTabProcessorVersion = anchorTabProcessorVersion; - return this; - } - - /** - * . - * @return anchorTabProcessorVersion - **/ - @ApiModelProperty(value = "") - public String getAnchorTabProcessorVersion() { - return anchorTabProcessorVersion; - } - - /** - * setAnchorTabProcessorVersion. - **/ - public void setAnchorTabProcessorVersion(String anchorTabProcessorVersion) { - this.anchorTabProcessorVersion = anchorTabProcessorVersion; - } - - - /** - * anchorTabProcessorVersionMetadata. - * - * @return ModelList - **/ - public ModelList anchorTabProcessorVersionMetadata(PropertyMetadata anchorTabProcessorVersionMetadata) { - this.anchorTabProcessorVersionMetadata = anchorTabProcessorVersionMetadata; - return this; - } - - /** - * Get anchorTabProcessorVersionMetadata. - * @return anchorTabProcessorVersionMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getAnchorTabProcessorVersionMetadata() { - return anchorTabProcessorVersionMetadata; - } - - /** - * setAnchorTabProcessorVersionMetadata. - **/ - public void setAnchorTabProcessorVersionMetadata(PropertyMetadata anchorTabProcessorVersionMetadata) { - this.anchorTabProcessorVersionMetadata = anchorTabProcessorVersionMetadata; - } - - - /** - * anchorUnits. - * - * @return ModelList - **/ - public ModelList anchorUnits(String anchorUnits) { - this.anchorUnits = anchorUnits; - return this; - } - - /** - * Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.. - * @return anchorUnits - **/ - @ApiModelProperty(value = "Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.") - public String getAnchorUnits() { - return anchorUnits; - } - - /** - * setAnchorUnits. - **/ - public void setAnchorUnits(String anchorUnits) { - this.anchorUnits = anchorUnits; - } - - - /** - * anchorUnitsMetadata. - * - * @return ModelList - **/ - public ModelList anchorUnitsMetadata(PropertyMetadata anchorUnitsMetadata) { - this.anchorUnitsMetadata = anchorUnitsMetadata; - return this; - } - - /** - * Get anchorUnitsMetadata. - * @return anchorUnitsMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getAnchorUnitsMetadata() { - return anchorUnitsMetadata; - } - - /** - * setAnchorUnitsMetadata. - **/ - public void setAnchorUnitsMetadata(PropertyMetadata anchorUnitsMetadata) { - this.anchorUnitsMetadata = anchorUnitsMetadata; - } - - - /** - * anchorXOffset. - * - * @return ModelList - **/ - public ModelList anchorXOffset(String anchorXOffset) { - this.anchorXOffset = anchorXOffset; - return this; - } - - /** - * Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString.. - * @return anchorXOffset - **/ - @ApiModelProperty(value = "Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString.") - public String getAnchorXOffset() { - return anchorXOffset; - } - - /** - * setAnchorXOffset. - **/ - public void setAnchorXOffset(String anchorXOffset) { - this.anchorXOffset = anchorXOffset; - } - - - /** - * anchorXOffsetMetadata. - * - * @return ModelList - **/ - public ModelList anchorXOffsetMetadata(PropertyMetadata anchorXOffsetMetadata) { - this.anchorXOffsetMetadata = anchorXOffsetMetadata; - return this; - } - - /** - * Get anchorXOffsetMetadata. - * @return anchorXOffsetMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getAnchorXOffsetMetadata() { - return anchorXOffsetMetadata; - } - - /** - * setAnchorXOffsetMetadata. - **/ - public void setAnchorXOffsetMetadata(PropertyMetadata anchorXOffsetMetadata) { - this.anchorXOffsetMetadata = anchorXOffsetMetadata; - } - - - /** - * anchorYOffset. - * - * @return ModelList - **/ - public ModelList anchorYOffset(String anchorYOffset) { - this.anchorYOffset = anchorYOffset; - return this; - } - - /** - * Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString.. - * @return anchorYOffset - **/ - @ApiModelProperty(value = "Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString.") - public String getAnchorYOffset() { - return anchorYOffset; - } - - /** - * setAnchorYOffset. - **/ - public void setAnchorYOffset(String anchorYOffset) { - this.anchorYOffset = anchorYOffset; - } - - - /** - * anchorYOffsetMetadata. - * - * @return ModelList - **/ - public ModelList anchorYOffsetMetadata(PropertyMetadata anchorYOffsetMetadata) { - this.anchorYOffsetMetadata = anchorYOffsetMetadata; - return this; - } - - /** - * Get anchorYOffsetMetadata. - * @return anchorYOffsetMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getAnchorYOffsetMetadata() { - return anchorYOffsetMetadata; - } - - /** - * setAnchorYOffsetMetadata. - **/ - public void setAnchorYOffsetMetadata(PropertyMetadata anchorYOffsetMetadata) { - this.anchorYOffsetMetadata = anchorYOffsetMetadata; - } - - - /** - * bold. - * - * @return ModelList - **/ - public ModelList bold(String bold) { - this.bold = bold; - return this; - } - - /** - * When set to **true**, the information in the tab is bold.. - * @return bold - **/ - @ApiModelProperty(value = "When set to **true**, the information in the tab is bold.") - public String getBold() { - return bold; - } - - /** - * setBold. - **/ - public void setBold(String bold) { - this.bold = bold; - } - - - /** - * boldMetadata. - * - * @return ModelList - **/ - public ModelList boldMetadata(PropertyMetadata boldMetadata) { - this.boldMetadata = boldMetadata; - return this; - } - - /** - * Get boldMetadata. - * @return boldMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getBoldMetadata() { - return boldMetadata; - } - - /** - * setBoldMetadata. - **/ - public void setBoldMetadata(PropertyMetadata boldMetadata) { - this.boldMetadata = boldMetadata; - } - - - /** - * conditionalParentLabel. - * - * @return ModelList - **/ - public ModelList conditionalParentLabel(String conditionalParentLabel) { - this.conditionalParentLabel = conditionalParentLabel; - return this; - } - - /** - * For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility.. - * @return conditionalParentLabel - **/ - @ApiModelProperty(value = "For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility.") - public String getConditionalParentLabel() { - return conditionalParentLabel; - } - - /** - * setConditionalParentLabel. - **/ - public void setConditionalParentLabel(String conditionalParentLabel) { - this.conditionalParentLabel = conditionalParentLabel; - } - - - /** - * conditionalParentLabelMetadata. - * - * @return ModelList - **/ - public ModelList conditionalParentLabelMetadata(PropertyMetadata conditionalParentLabelMetadata) { - this.conditionalParentLabelMetadata = conditionalParentLabelMetadata; - return this; - } - - /** - * Get conditionalParentLabelMetadata. - * @return conditionalParentLabelMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getConditionalParentLabelMetadata() { - return conditionalParentLabelMetadata; - } - - /** - * setConditionalParentLabelMetadata. - **/ - public void setConditionalParentLabelMetadata(PropertyMetadata conditionalParentLabelMetadata) { - this.conditionalParentLabelMetadata = conditionalParentLabelMetadata; - } - - - /** - * conditionalParentValue. - * - * @return ModelList - **/ - public ModelList conditionalParentValue(String conditionalParentValue) { - this.conditionalParentValue = conditionalParentValue; - return this; - } - - /** - * For conditional fields, this is the value of the parent tab that controls the tab's visibility. If the parent tab is a Checkbox, Radio button, Optional Signature, or Optional Initial use \"on\" as the value to show that the parent tab is active. . - * @return conditionalParentValue - **/ - @ApiModelProperty(value = "For conditional fields, this is the value of the parent tab that controls the tab's visibility. If the parent tab is a Checkbox, Radio button, Optional Signature, or Optional Initial use \"on\" as the value to show that the parent tab is active. ") - public String getConditionalParentValue() { - return conditionalParentValue; - } - - /** - * setConditionalParentValue. - **/ - public void setConditionalParentValue(String conditionalParentValue) { - this.conditionalParentValue = conditionalParentValue; - } - - - /** - * conditionalParentValueMetadata. - * - * @return ModelList - **/ - public ModelList conditionalParentValueMetadata(PropertyMetadata conditionalParentValueMetadata) { - this.conditionalParentValueMetadata = conditionalParentValueMetadata; - return this; - } - - /** - * Get conditionalParentValueMetadata. - * @return conditionalParentValueMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getConditionalParentValueMetadata() { - return conditionalParentValueMetadata; - } - - /** - * setConditionalParentValueMetadata. - **/ - public void setConditionalParentValueMetadata(PropertyMetadata conditionalParentValueMetadata) { - this.conditionalParentValueMetadata = conditionalParentValueMetadata; - } - - - /** - * customTabId. - * - * @return ModelList - **/ - public ModelList customTabId(String customTabId) { - this.customTabId = customTabId; - return this; - } - - /** - * The DocuSign generated custom tab ID for the custom tab to be applied. This can only be used when adding new tabs for a recipient. When used, the new tab inherits all the custom tab properties.. - * @return customTabId - **/ - @ApiModelProperty(value = "The DocuSign generated custom tab ID for the custom tab to be applied. This can only be used when adding new tabs for a recipient. When used, the new tab inherits all the custom tab properties.") - public String getCustomTabId() { - return customTabId; - } - - /** - * setCustomTabId. - **/ - public void setCustomTabId(String customTabId) { - this.customTabId = customTabId; - } - - - /** - * customTabIdMetadata. - * - * @return ModelList - **/ - public ModelList customTabIdMetadata(PropertyMetadata customTabIdMetadata) { - this.customTabIdMetadata = customTabIdMetadata; - return this; - } - - /** - * Get customTabIdMetadata. - * @return customTabIdMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getCustomTabIdMetadata() { - return customTabIdMetadata; - } - - /** - * setCustomTabIdMetadata. - **/ - public void setCustomTabIdMetadata(PropertyMetadata customTabIdMetadata) { - this.customTabIdMetadata = customTabIdMetadata; - } - - - /** - * documentId. - * - * @return ModelList - **/ - public ModelList documentId(String documentId) { - this.documentId = documentId; - return this; - } - - /** - * Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute.. - * @return documentId - **/ - @ApiModelProperty(value = "Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute.") - public String getDocumentId() { - return documentId; - } - - /** - * setDocumentId. - **/ - public void setDocumentId(String documentId) { - this.documentId = documentId; - } - - - /** - * documentIdMetadata. - * - * @return ModelList - **/ - public ModelList documentIdMetadata(PropertyMetadata documentIdMetadata) { - this.documentIdMetadata = documentIdMetadata; - return this; - } - - /** - * Get documentIdMetadata. - * @return documentIdMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getDocumentIdMetadata() { - return documentIdMetadata; - } - - /** - * setDocumentIdMetadata. - **/ - public void setDocumentIdMetadata(PropertyMetadata documentIdMetadata) { - this.documentIdMetadata = documentIdMetadata; - } - - - /** - * errorDetails. - * - * @return ModelList - **/ - public ModelList errorDetails(ErrorDetails errorDetails) { - this.errorDetails = errorDetails; - return this; - } - - /** - * Get errorDetails. - * @return errorDetails - **/ - @ApiModelProperty(value = "") - public ErrorDetails getErrorDetails() { - return errorDetails; - } - - /** - * setErrorDetails. - **/ - public void setErrorDetails(ErrorDetails errorDetails) { - this.errorDetails = errorDetails; - } - - - /** - * font. - * - * @return ModelList - **/ - public ModelList font(String font) { - this.font = font; - return this; - } - - /** - * The font to be used for the tab value. Supported Fonts: Arial, Arial, ArialNarrow, Calibri, CourierNew, Garamond, Georgia, Helvetica, LucidaConsole, Tahoma, TimesNewRoman, Trebuchet, Verdana, MSGothic, MSMincho, Default.. - * @return font - **/ - @ApiModelProperty(value = "The font to be used for the tab value. Supported Fonts: Arial, Arial, ArialNarrow, Calibri, CourierNew, Garamond, Georgia, Helvetica, LucidaConsole, Tahoma, TimesNewRoman, Trebuchet, Verdana, MSGothic, MSMincho, Default.") - public String getFont() { - return font; - } - - /** - * setFont. - **/ - public void setFont(String font) { - this.font = font; - } - - - /** - * fontColor. - * - * @return ModelList - **/ - public ModelList fontColor(String fontColor) { - this.fontColor = fontColor; - return this; - } - - /** - * The font color used for the information in the tab. Possible values are: Black, BrightBlue, BrightRed, DarkGreen, DarkRed, Gold, Green, NavyBlue, Purple, or White.. - * @return fontColor - **/ - @ApiModelProperty(value = "The font color used for the information in the tab. Possible values are: Black, BrightBlue, BrightRed, DarkGreen, DarkRed, Gold, Green, NavyBlue, Purple, or White.") - public String getFontColor() { - return fontColor; - } - - /** - * setFontColor. - **/ - public void setFontColor(String fontColor) { - this.fontColor = fontColor; - } - - - /** - * fontColorMetadata. - * - * @return ModelList - **/ - public ModelList fontColorMetadata(PropertyMetadata fontColorMetadata) { - this.fontColorMetadata = fontColorMetadata; - return this; - } - - /** - * Get fontColorMetadata. - * @return fontColorMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getFontColorMetadata() { - return fontColorMetadata; - } - - /** - * setFontColorMetadata. - **/ - public void setFontColorMetadata(PropertyMetadata fontColorMetadata) { - this.fontColorMetadata = fontColorMetadata; - } - - - /** - * fontMetadata. - * - * @return ModelList - **/ - public ModelList fontMetadata(PropertyMetadata fontMetadata) { - this.fontMetadata = fontMetadata; - return this; - } - - /** - * Get fontMetadata. - * @return fontMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getFontMetadata() { - return fontMetadata; - } - - /** - * setFontMetadata. - **/ - public void setFontMetadata(PropertyMetadata fontMetadata) { - this.fontMetadata = fontMetadata; - } - - - /** - * fontSize. - * - * @return ModelList - **/ - public ModelList fontSize(String fontSize) { - this.fontSize = fontSize; - return this; - } - - /** - * The font size used for the information in the tab. Possible values are: Size7, Size8, Size9, Size10, Size11, Size12, Size14, Size16, Size18, Size20, Size22, Size24, Size26, Size28, Size36, Size48, or Size72.. - * @return fontSize - **/ - @ApiModelProperty(value = "The font size used for the information in the tab. Possible values are: Size7, Size8, Size9, Size10, Size11, Size12, Size14, Size16, Size18, Size20, Size22, Size24, Size26, Size28, Size36, Size48, or Size72.") - public String getFontSize() { - return fontSize; - } - - /** - * setFontSize. - **/ - public void setFontSize(String fontSize) { - this.fontSize = fontSize; - } - - - /** - * fontSizeMetadata. - * - * @return ModelList - **/ - public ModelList fontSizeMetadata(PropertyMetadata fontSizeMetadata) { - this.fontSizeMetadata = fontSizeMetadata; - return this; - } - - /** - * Get fontSizeMetadata. - * @return fontSizeMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getFontSizeMetadata() { - return fontSizeMetadata; - } - - /** - * setFontSizeMetadata. - **/ - public void setFontSizeMetadata(PropertyMetadata fontSizeMetadata) { - this.fontSizeMetadata = fontSizeMetadata; - } - - - /** - * formOrder. - * - * @return ModelList - **/ - public ModelList formOrder(String formOrder) { - this.formOrder = formOrder; - return this; - } - - /** - * . - * @return formOrder - **/ - @ApiModelProperty(value = "") - public String getFormOrder() { - return formOrder; - } - - /** - * setFormOrder. - **/ - public void setFormOrder(String formOrder) { - this.formOrder = formOrder; - } - - - /** - * formOrderMetadata. - * - * @return ModelList - **/ - public ModelList formOrderMetadata(PropertyMetadata formOrderMetadata) { - this.formOrderMetadata = formOrderMetadata; - return this; - } - - /** - * Get formOrderMetadata. - * @return formOrderMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getFormOrderMetadata() { - return formOrderMetadata; - } - - /** - * setFormOrderMetadata. - **/ - public void setFormOrderMetadata(PropertyMetadata formOrderMetadata) { - this.formOrderMetadata = formOrderMetadata; - } - - - /** - * formPageLabel. - * - * @return ModelList - **/ - public ModelList formPageLabel(String formPageLabel) { - this.formPageLabel = formPageLabel; - return this; - } - - /** - * . - * @return formPageLabel - **/ - @ApiModelProperty(value = "") - public String getFormPageLabel() { - return formPageLabel; - } - - /** - * setFormPageLabel. - **/ - public void setFormPageLabel(String formPageLabel) { - this.formPageLabel = formPageLabel; - } - - - /** - * formPageLabelMetadata. - * - * @return ModelList - **/ - public ModelList formPageLabelMetadata(PropertyMetadata formPageLabelMetadata) { - this.formPageLabelMetadata = formPageLabelMetadata; - return this; - } - - /** - * Get formPageLabelMetadata. - * @return formPageLabelMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getFormPageLabelMetadata() { - return formPageLabelMetadata; - } - - /** - * setFormPageLabelMetadata. - **/ - public void setFormPageLabelMetadata(PropertyMetadata formPageLabelMetadata) { - this.formPageLabelMetadata = formPageLabelMetadata; - } - - - /** - * formPageNumber. - * - * @return ModelList - **/ - public ModelList formPageNumber(String formPageNumber) { - this.formPageNumber = formPageNumber; - return this; - } - - /** - * . - * @return formPageNumber - **/ - @ApiModelProperty(value = "") - public String getFormPageNumber() { - return formPageNumber; - } - - /** - * setFormPageNumber. - **/ - public void setFormPageNumber(String formPageNumber) { - this.formPageNumber = formPageNumber; - } - - - /** - * formPageNumberMetadata. - * - * @return ModelList - **/ - public ModelList formPageNumberMetadata(PropertyMetadata formPageNumberMetadata) { - this.formPageNumberMetadata = formPageNumberMetadata; - return this; - } - - /** - * Get formPageNumberMetadata. - * @return formPageNumberMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getFormPageNumberMetadata() { - return formPageNumberMetadata; - } - - /** - * setFormPageNumberMetadata. - **/ - public void setFormPageNumberMetadata(PropertyMetadata formPageNumberMetadata) { - this.formPageNumberMetadata = formPageNumberMetadata; - } - - - /** - * height. - * - * @return ModelList - **/ - public ModelList height(String height) { - this.height = height; - return this; - } - - /** - * Height of the tab in pixels.. - * @return height - **/ - @ApiModelProperty(value = "Height of the tab in pixels.") - public String getHeight() { - return height; - } - - /** - * setHeight. - **/ - public void setHeight(String height) { - this.height = height; - } - - - /** - * heightMetadata. - * - * @return ModelList - **/ - public ModelList heightMetadata(PropertyMetadata heightMetadata) { - this.heightMetadata = heightMetadata; - return this; - } - - /** - * Get heightMetadata. - * @return heightMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getHeightMetadata() { - return heightMetadata; - } - - /** - * setHeightMetadata. - **/ - public void setHeightMetadata(PropertyMetadata heightMetadata) { - this.heightMetadata = heightMetadata; - } - - - /** - * italic. - * - * @return ModelList - **/ - public ModelList italic(String italic) { - this.italic = italic; - return this; - } - - /** - * When set to **true**, the information in the tab is italic.. - * @return italic - **/ - @ApiModelProperty(value = "When set to **true**, the information in the tab is italic.") - public String getItalic() { - return italic; - } - - /** - * setItalic. - **/ - public void setItalic(String italic) { - this.italic = italic; - } - - - /** - * italicMetadata. - * - * @return ModelList - **/ - public ModelList italicMetadata(PropertyMetadata italicMetadata) { - this.italicMetadata = italicMetadata; - return this; - } - - /** - * Get italicMetadata. - * @return italicMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getItalicMetadata() { - return italicMetadata; - } - - /** - * setItalicMetadata. - **/ - public void setItalicMetadata(PropertyMetadata italicMetadata) { - this.italicMetadata = italicMetadata; - } - - - /** - * listItems. - * - * @return ModelList - **/ - public ModelList listItems(java.util.List listItems) { - this.listItems = listItems; - return this; - } - - /** - * addListItemsItem. - * - * @return ModelList - **/ - public ModelList addListItemsItem(ListItem listItemsItem) { - if (this.listItems == null) { - this.listItems = new java.util.ArrayList(); - } - this.listItems.add(listItemsItem); - return this; - } - - /** - * The list of values that can be selected by senders. The list values are separated by semi-colons. Example: [one;two;three;four] Maximum Length of listItems: 2048 characters. Maximum Length of items in the list: 100 characters. . - * @return listItems - **/ - @ApiModelProperty(value = "The list of values that can be selected by senders. The list values are separated by semi-colons. Example: [one;two;three;four] Maximum Length of listItems: 2048 characters. Maximum Length of items in the list: 100 characters. ") - public java.util.List getListItems() { - return listItems; - } - - /** - * setListItems. - **/ - public void setListItems(java.util.List listItems) { - this.listItems = listItems; - } - - - /** - * listSelectedValue. - * - * @return ModelList - **/ - public ModelList listSelectedValue(String listSelectedValue) { - this.listSelectedValue = listSelectedValue; - return this; - } - - /** - * . - * @return listSelectedValue - **/ - @ApiModelProperty(value = "") - public String getListSelectedValue() { - return listSelectedValue; - } - - /** - * setListSelectedValue. - **/ - public void setListSelectedValue(String listSelectedValue) { - this.listSelectedValue = listSelectedValue; - } - - - /** - * listSelectedValueMetadata. - * - * @return ModelList - **/ - public ModelList listSelectedValueMetadata(PropertyMetadata listSelectedValueMetadata) { - this.listSelectedValueMetadata = listSelectedValueMetadata; - return this; - } - - /** - * Get listSelectedValueMetadata. - * @return listSelectedValueMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getListSelectedValueMetadata() { - return listSelectedValueMetadata; - } - - /** - * setListSelectedValueMetadata. - **/ - public void setListSelectedValueMetadata(PropertyMetadata listSelectedValueMetadata) { - this.listSelectedValueMetadata = listSelectedValueMetadata; - } - - - /** - * localePolicy. - * - * @return ModelList - **/ - public ModelList localePolicy(LocalePolicyTab localePolicy) { - this.localePolicy = localePolicy; - return this; - } - - /** - * Get localePolicy. - * @return localePolicy - **/ - @ApiModelProperty(value = "") - public LocalePolicyTab getLocalePolicy() { - return localePolicy; - } - - /** - * setLocalePolicy. - **/ - public void setLocalePolicy(LocalePolicyTab localePolicy) { - this.localePolicy = localePolicy; - } - - - /** - * locked. - * - * @return ModelList - **/ - public ModelList locked(String locked) { - this.locked = locked; - return this; - } - - /** - * When set to **true**, the signer cannot change the data of the custom tab.. - * @return locked - **/ - @ApiModelProperty(value = "When set to **true**, the signer cannot change the data of the custom tab.") - public String getLocked() { - return locked; - } - - /** - * setLocked. - **/ - public void setLocked(String locked) { - this.locked = locked; - } - - - /** - * lockedMetadata. - * - * @return ModelList - **/ - public ModelList lockedMetadata(PropertyMetadata lockedMetadata) { - this.lockedMetadata = lockedMetadata; - return this; - } - - /** - * Get lockedMetadata. - * @return lockedMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getLockedMetadata() { - return lockedMetadata; - } - - /** - * setLockedMetadata. - **/ - public void setLockedMetadata(PropertyMetadata lockedMetadata) { - this.lockedMetadata = lockedMetadata; - } - - - /** - * mergeField. - * - * @return ModelList - **/ - public ModelList mergeField(MergeField mergeField) { - this.mergeField = mergeField; - return this; - } - - /** - * Get mergeField. - * @return mergeField - **/ - @ApiModelProperty(value = "") - public MergeField getMergeField() { - return mergeField; - } - - /** - * setMergeField. - **/ - public void setMergeField(MergeField mergeField) { - this.mergeField = mergeField; - } - - - /** - * mergeFieldXml. - * - * @return ModelList - **/ - public ModelList mergeFieldXml(String mergeFieldXml) { - this.mergeFieldXml = mergeFieldXml; - return this; - } - - /** - * . - * @return mergeFieldXml - **/ - @ApiModelProperty(value = "") - public String getMergeFieldXml() { - return mergeFieldXml; - } - - /** - * setMergeFieldXml. - **/ - public void setMergeFieldXml(String mergeFieldXml) { - this.mergeFieldXml = mergeFieldXml; - } - - - /** - * originalValue. - * - * @return ModelList - **/ - public ModelList originalValue(String originalValue) { - this.originalValue = originalValue; - return this; - } - - /** - * The initial value of the tab when it was sent to the recipient. . - * @return originalValue - **/ - @ApiModelProperty(value = "The initial value of the tab when it was sent to the recipient. ") - public String getOriginalValue() { - return originalValue; - } - - /** - * setOriginalValue. - **/ - public void setOriginalValue(String originalValue) { - this.originalValue = originalValue; - } - - - /** - * originalValueMetadata. - * - * @return ModelList - **/ - public ModelList originalValueMetadata(PropertyMetadata originalValueMetadata) { - this.originalValueMetadata = originalValueMetadata; - return this; - } - - /** - * Get originalValueMetadata. - * @return originalValueMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getOriginalValueMetadata() { - return originalValueMetadata; - } - - /** - * setOriginalValueMetadata. - **/ - public void setOriginalValueMetadata(PropertyMetadata originalValueMetadata) { - this.originalValueMetadata = originalValueMetadata; - } - - - /** - * pageNumber. - * - * @return ModelList - **/ - public ModelList pageNumber(String pageNumber) { - this.pageNumber = pageNumber; - return this; - } - - /** - * Specifies the page number on which the tab is located.. - * @return pageNumber - **/ - @ApiModelProperty(value = "Specifies the page number on which the tab is located.") - public String getPageNumber() { - return pageNumber; - } - - /** - * setPageNumber. - **/ - public void setPageNumber(String pageNumber) { - this.pageNumber = pageNumber; - } - - - /** - * pageNumberMetadata. - * - * @return ModelList - **/ - public ModelList pageNumberMetadata(PropertyMetadata pageNumberMetadata) { - this.pageNumberMetadata = pageNumberMetadata; - return this; - } - - /** - * Get pageNumberMetadata. - * @return pageNumberMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getPageNumberMetadata() { - return pageNumberMetadata; - } - - /** - * setPageNumberMetadata. - **/ - public void setPageNumberMetadata(PropertyMetadata pageNumberMetadata) { - this.pageNumberMetadata = pageNumberMetadata; - } - - - /** - * recipientId. - * - * @return ModelList - **/ - public ModelList 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 - **/ - @ApiModelProperty(value = "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 ModelList - **/ - public ModelList recipientIdGuid(String recipientIdGuid) { - this.recipientIdGuid = recipientIdGuid; - return this; - } - - /** - * . - * @return recipientIdGuid - **/ - @ApiModelProperty(value = "") - public String getRecipientIdGuid() { - return recipientIdGuid; - } - - /** - * setRecipientIdGuid. - **/ - public void setRecipientIdGuid(String recipientIdGuid) { - this.recipientIdGuid = recipientIdGuid; - } - - - /** - * recipientIdGuidMetadata. - * - * @return ModelList - **/ - public ModelList recipientIdGuidMetadata(PropertyMetadata recipientIdGuidMetadata) { - this.recipientIdGuidMetadata = recipientIdGuidMetadata; - return this; - } - - /** - * Get recipientIdGuidMetadata. - * @return recipientIdGuidMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getRecipientIdGuidMetadata() { - return recipientIdGuidMetadata; - } - - /** - * setRecipientIdGuidMetadata. - **/ - public void setRecipientIdGuidMetadata(PropertyMetadata recipientIdGuidMetadata) { - this.recipientIdGuidMetadata = recipientIdGuidMetadata; - } - - - /** - * recipientIdMetadata. - * - * @return ModelList - **/ - public ModelList recipientIdMetadata(PropertyMetadata recipientIdMetadata) { - this.recipientIdMetadata = recipientIdMetadata; - return this; - } - - /** - * Get recipientIdMetadata. - * @return recipientIdMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getRecipientIdMetadata() { - return recipientIdMetadata; - } - - /** - * setRecipientIdMetadata. - **/ - public void setRecipientIdMetadata(PropertyMetadata recipientIdMetadata) { - this.recipientIdMetadata = recipientIdMetadata; - } - - - /** - * requireAll. - * - * @return ModelList - **/ - public ModelList requireAll(String requireAll) { - this.requireAll = requireAll; - return this; - } - - /** - * When set to **true** and shared is true, information must be entered in this field to complete the envelope. . - * @return requireAll - **/ - @ApiModelProperty(value = "When set to **true** and shared is true, information must be entered in this field to complete the envelope. ") - public String getRequireAll() { - return requireAll; - } - - /** - * setRequireAll. - **/ - public void setRequireAll(String requireAll) { - this.requireAll = requireAll; - } - - - /** - * requireAllMetadata. - * - * @return ModelList - **/ - public ModelList requireAllMetadata(PropertyMetadata requireAllMetadata) { - this.requireAllMetadata = requireAllMetadata; - return this; - } - - /** - * Get requireAllMetadata. - * @return requireAllMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getRequireAllMetadata() { - return requireAllMetadata; - } - - /** - * setRequireAllMetadata. - **/ - public void setRequireAllMetadata(PropertyMetadata requireAllMetadata) { - this.requireAllMetadata = requireAllMetadata; - } - - - /** - * required. - * - * @return ModelList - **/ - public ModelList required(String required) { - this.required = required; - return this; - } - - /** - * When set to **true**, the signer is required to fill out this tab. - * @return required - **/ - @ApiModelProperty(value = "When set to **true**, the signer is required to fill out this tab") - public String getRequired() { - return required; - } - - /** - * setRequired. - **/ - public void setRequired(String required) { - this.required = required; - } - - - /** - * requiredMetadata. - * - * @return ModelList - **/ - public ModelList requiredMetadata(PropertyMetadata requiredMetadata) { - this.requiredMetadata = requiredMetadata; - return this; - } - - /** - * Get requiredMetadata. - * @return requiredMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getRequiredMetadata() { - return requiredMetadata; - } - - /** - * setRequiredMetadata. - **/ - public void setRequiredMetadata(PropertyMetadata requiredMetadata) { - this.requiredMetadata = requiredMetadata; - } - - - /** - * requireInitialOnSharedChange. - * - * @return ModelList - **/ - public ModelList requireInitialOnSharedChange(String requireInitialOnSharedChange) { - this.requireInitialOnSharedChange = requireInitialOnSharedChange; - return this; - } - - /** - * Optional element for field markup. When set to **true**, the signer is required to initial when they modify a shared field.. - * @return requireInitialOnSharedChange - **/ - @ApiModelProperty(value = "Optional element for field markup. When set to **true**, the signer is required to initial when they modify a shared field.") - public String getRequireInitialOnSharedChange() { - return requireInitialOnSharedChange; - } - - /** - * setRequireInitialOnSharedChange. - **/ - public void setRequireInitialOnSharedChange(String requireInitialOnSharedChange) { - this.requireInitialOnSharedChange = requireInitialOnSharedChange; - } - - - /** - * requireInitialOnSharedChangeMetadata. - * - * @return ModelList - **/ - public ModelList requireInitialOnSharedChangeMetadata(PropertyMetadata requireInitialOnSharedChangeMetadata) { - this.requireInitialOnSharedChangeMetadata = requireInitialOnSharedChangeMetadata; - return this; - } - - /** - * Get requireInitialOnSharedChangeMetadata. - * @return requireInitialOnSharedChangeMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getRequireInitialOnSharedChangeMetadata() { - return requireInitialOnSharedChangeMetadata; - } - - /** - * setRequireInitialOnSharedChangeMetadata. - **/ - public void setRequireInitialOnSharedChangeMetadata(PropertyMetadata requireInitialOnSharedChangeMetadata) { - this.requireInitialOnSharedChangeMetadata = requireInitialOnSharedChangeMetadata; - } - - - /** - * senderRequired. - * - * @return ModelList - **/ - public ModelList senderRequired(String senderRequired) { - this.senderRequired = senderRequired; - return this; - } - - /** - * When set to **true**, the sender must populate the tab before an envelope can be sent using the template. This value tab can only be changed by modifying (PUT) the template. Tabs with a `senderRequired` value of true cannot be deleted from an envelope.. - * @return senderRequired - **/ - @ApiModelProperty(value = "When set to **true**, the sender must populate the tab before an envelope can be sent using the template. This value tab can only be changed by modifying (PUT) the template. Tabs with a `senderRequired` value of true cannot be deleted from an envelope.") - public String getSenderRequired() { - return senderRequired; - } - - /** - * setSenderRequired. - **/ - public void setSenderRequired(String senderRequired) { - this.senderRequired = senderRequired; - } - - - /** - * senderRequiredMetadata. - * - * @return ModelList - **/ - public ModelList senderRequiredMetadata(PropertyMetadata senderRequiredMetadata) { - this.senderRequiredMetadata = senderRequiredMetadata; - return this; - } - - /** - * Get senderRequiredMetadata. - * @return senderRequiredMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getSenderRequiredMetadata() { - return senderRequiredMetadata; - } - - /** - * setSenderRequiredMetadata. - **/ - public void setSenderRequiredMetadata(PropertyMetadata senderRequiredMetadata) { - this.senderRequiredMetadata = senderRequiredMetadata; - } - - - /** - * shared. - * - * @return ModelList - **/ - public ModelList shared(String shared) { - this.shared = shared; - return this; - } - - /** - * When set to **true**, this custom tab is shared.. - * @return shared - **/ - @ApiModelProperty(value = "When set to **true**, this custom tab is shared.") - public String getShared() { - return shared; - } - - /** - * setShared. - **/ - public void setShared(String shared) { - this.shared = shared; - } - - - /** - * sharedMetadata. - * - * @return ModelList - **/ - public ModelList sharedMetadata(PropertyMetadata sharedMetadata) { - this.sharedMetadata = sharedMetadata; - return this; - } - - /** - * Get sharedMetadata. - * @return sharedMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getSharedMetadata() { - return sharedMetadata; - } - - /** - * setSharedMetadata. - **/ - public void setSharedMetadata(PropertyMetadata sharedMetadata) { - this.sharedMetadata = sharedMetadata; - } - - - /** - * shareToRecipients. - * - * @return ModelList - **/ - public ModelList shareToRecipients(String shareToRecipients) { - this.shareToRecipients = shareToRecipients; - return this; - } - - /** - * . - * @return shareToRecipients - **/ - @ApiModelProperty(value = "") - public String getShareToRecipients() { - return shareToRecipients; - } - - /** - * setShareToRecipients. - **/ - public void setShareToRecipients(String shareToRecipients) { - this.shareToRecipients = shareToRecipients; - } - - - /** - * shareToRecipientsMetadata. - * - * @return ModelList - **/ - public ModelList shareToRecipientsMetadata(PropertyMetadata shareToRecipientsMetadata) { - this.shareToRecipientsMetadata = shareToRecipientsMetadata; - return this; - } - - /** - * Get shareToRecipientsMetadata. - * @return shareToRecipientsMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getShareToRecipientsMetadata() { - return shareToRecipientsMetadata; - } - - /** - * setShareToRecipientsMetadata. - **/ - public void setShareToRecipientsMetadata(PropertyMetadata shareToRecipientsMetadata) { - this.shareToRecipientsMetadata = shareToRecipientsMetadata; - } - - - /** - * smartContractInformation. - * - * @return ModelList - **/ - public ModelList smartContractInformation(SmartContractInformation smartContractInformation) { - this.smartContractInformation = smartContractInformation; - return this; - } - - /** - * Get smartContractInformation. - * @return smartContractInformation - **/ - @ApiModelProperty(value = "") - public SmartContractInformation getSmartContractInformation() { - return smartContractInformation; - } - - /** - * setSmartContractInformation. - **/ - public void setSmartContractInformation(SmartContractInformation smartContractInformation) { - this.smartContractInformation = smartContractInformation; - } - - - /** - * source. - * - * @return ModelList - **/ - public ModelList source(String source) { - this.source = source; - return this; - } - - /** - * . - * @return source - **/ - @ApiModelProperty(value = "") - public String getSource() { - return source; - } - - /** - * setSource. - **/ - public void setSource(String source) { - this.source = source; - } - - - /** - * status. - * - * @return ModelList - **/ - public ModelList 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 - **/ - @ApiModelProperty(value = "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; - } - - - /** - * statusMetadata. - * - * @return ModelList - **/ - public ModelList statusMetadata(PropertyMetadata statusMetadata) { - this.statusMetadata = statusMetadata; - return this; - } - - /** - * Get statusMetadata. - * @return statusMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getStatusMetadata() { - return statusMetadata; - } - - /** - * setStatusMetadata. - **/ - public void setStatusMetadata(PropertyMetadata statusMetadata) { - this.statusMetadata = statusMetadata; - } - - - /** - * tabGroupLabels. - * - * @return ModelList - **/ - public ModelList tabGroupLabels(java.util.List tabGroupLabels) { - this.tabGroupLabels = tabGroupLabels; - return this; - } - - /** - * addTabGroupLabelsItem. - * - * @return ModelList - **/ - public ModelList addTabGroupLabelsItem(String tabGroupLabelsItem) { - if (this.tabGroupLabels == null) { - this.tabGroupLabels = new java.util.ArrayList(); - } - this.tabGroupLabels.add(tabGroupLabelsItem); - return this; - } - - /** - * . - * @return tabGroupLabels - **/ - @ApiModelProperty(value = "") - public java.util.List getTabGroupLabels() { - return tabGroupLabels; - } - - /** - * setTabGroupLabels. - **/ - public void setTabGroupLabels(java.util.List tabGroupLabels) { - this.tabGroupLabels = tabGroupLabels; - } - - - /** - * tabGroupLabelsMetadata. - * - * @return ModelList - **/ - public ModelList tabGroupLabelsMetadata(PropertyMetadata tabGroupLabelsMetadata) { - this.tabGroupLabelsMetadata = tabGroupLabelsMetadata; - return this; - } - - /** - * Get tabGroupLabelsMetadata. - * @return tabGroupLabelsMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getTabGroupLabelsMetadata() { - return tabGroupLabelsMetadata; - } - - /** - * setTabGroupLabelsMetadata. - **/ - public void setTabGroupLabelsMetadata(PropertyMetadata tabGroupLabelsMetadata) { - this.tabGroupLabelsMetadata = tabGroupLabelsMetadata; - } - - - /** - * tabId. - * - * @return ModelList - **/ - public ModelList tabId(String tabId) { - this.tabId = tabId; - return this; - } - - /** - * The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. . - * @return tabId - **/ - @ApiModelProperty(value = "The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. ") - public String getTabId() { - return tabId; - } - - /** - * setTabId. - **/ - public void setTabId(String tabId) { - this.tabId = tabId; - } - - - /** - * tabIdMetadata. - * - * @return ModelList - **/ - public ModelList tabIdMetadata(PropertyMetadata tabIdMetadata) { - this.tabIdMetadata = tabIdMetadata; - return this; - } - - /** - * Get tabIdMetadata. - * @return tabIdMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getTabIdMetadata() { - return tabIdMetadata; - } - - /** - * setTabIdMetadata. - **/ - public void setTabIdMetadata(PropertyMetadata tabIdMetadata) { - this.tabIdMetadata = tabIdMetadata; - } - - - /** - * tabLabel. - * - * @return ModelList - **/ - public ModelList tabLabel(String tabLabel) { - this.tabLabel = tabLabel; - return this; - } - - /** - * The label string associated with the tab.. - * @return tabLabel - **/ - @ApiModelProperty(value = "The label string associated with the tab.") - public String getTabLabel() { - return tabLabel; - } - - /** - * setTabLabel. - **/ - public void setTabLabel(String tabLabel) { - this.tabLabel = tabLabel; - } - - - /** - * tabLabelMetadata. - * - * @return ModelList - **/ - public ModelList tabLabelMetadata(PropertyMetadata tabLabelMetadata) { - this.tabLabelMetadata = tabLabelMetadata; - return this; - } - - /** - * Get tabLabelMetadata. - * @return tabLabelMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getTabLabelMetadata() { - return tabLabelMetadata; - } - - /** - * setTabLabelMetadata. - **/ - public void setTabLabelMetadata(PropertyMetadata tabLabelMetadata) { - this.tabLabelMetadata = tabLabelMetadata; - } - - - /** - * tabOrder. - * - * @return ModelList - **/ - public ModelList tabOrder(String tabOrder) { - this.tabOrder = tabOrder; - return this; - } - - /** - * . - * @return tabOrder - **/ - @ApiModelProperty(value = "") - public String getTabOrder() { - return tabOrder; - } - - /** - * setTabOrder. - **/ - public void setTabOrder(String tabOrder) { - this.tabOrder = tabOrder; - } - - - /** - * tabOrderMetadata. - * - * @return ModelList - **/ - public ModelList tabOrderMetadata(PropertyMetadata tabOrderMetadata) { - this.tabOrderMetadata = tabOrderMetadata; - return this; - } - - /** - * Get tabOrderMetadata. - * @return tabOrderMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getTabOrderMetadata() { - return tabOrderMetadata; - } - - /** - * setTabOrderMetadata. - **/ - public void setTabOrderMetadata(PropertyMetadata tabOrderMetadata) { - this.tabOrderMetadata = tabOrderMetadata; - } - - - /** - * tabType. - * - * @return ModelList - **/ - public ModelList tabType(String tabType) { - this.tabType = tabType; - return this; - } - - /** - * . - * @return tabType - **/ - @ApiModelProperty(value = "") - public String getTabType() { - return tabType; - } - - /** - * setTabType. - **/ - public void setTabType(String tabType) { - this.tabType = tabType; - } - - - /** - * tabTypeMetadata. - * - * @return ModelList - **/ - public ModelList tabTypeMetadata(PropertyMetadata tabTypeMetadata) { - this.tabTypeMetadata = tabTypeMetadata; - return this; - } - - /** - * Get tabTypeMetadata. - * @return tabTypeMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getTabTypeMetadata() { - return tabTypeMetadata; - } - - /** - * setTabTypeMetadata. - **/ - public void setTabTypeMetadata(PropertyMetadata tabTypeMetadata) { - this.tabTypeMetadata = tabTypeMetadata; - } - - - /** - * templateLocked. - * - * @return ModelList - **/ - public ModelList 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 - **/ - @ApiModelProperty(value = "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; - } - - - /** - * templateLockedMetadata. - * - * @return ModelList - **/ - public ModelList templateLockedMetadata(PropertyMetadata templateLockedMetadata) { - this.templateLockedMetadata = templateLockedMetadata; - return this; - } - - /** - * Get templateLockedMetadata. - * @return templateLockedMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getTemplateLockedMetadata() { - return templateLockedMetadata; - } - - /** - * setTemplateLockedMetadata. - **/ - public void setTemplateLockedMetadata(PropertyMetadata templateLockedMetadata) { - this.templateLockedMetadata = templateLockedMetadata; - } - - - /** - * templateRequired. - * - * @return ModelList - **/ - public ModelList 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 - **/ - @ApiModelProperty(value = "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; - } - - - /** - * templateRequiredMetadata. - * - * @return ModelList - **/ - public ModelList templateRequiredMetadata(PropertyMetadata templateRequiredMetadata) { - this.templateRequiredMetadata = templateRequiredMetadata; - return this; - } - - /** - * Get templateRequiredMetadata. - * @return templateRequiredMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getTemplateRequiredMetadata() { - return templateRequiredMetadata; - } - - /** - * setTemplateRequiredMetadata. - **/ - public void setTemplateRequiredMetadata(PropertyMetadata templateRequiredMetadata) { - this.templateRequiredMetadata = templateRequiredMetadata; - } - - - /** - * tooltip. - * - * @return ModelList - **/ - public ModelList tooltip(String tooltip) { - this.tooltip = tooltip; - return this; - } - - /** - * . - * @return tooltip - **/ - @ApiModelProperty(value = "") - public String getTooltip() { - return tooltip; - } - - /** - * setTooltip. - **/ - public void setTooltip(String tooltip) { - this.tooltip = tooltip; - } - - - /** - * toolTipMetadata. - * - * @return ModelList - **/ - public ModelList toolTipMetadata(PropertyMetadata toolTipMetadata) { - this.toolTipMetadata = toolTipMetadata; - return this; - } - - /** - * Get toolTipMetadata. - * @return toolTipMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getToolTipMetadata() { - return toolTipMetadata; - } - - /** - * setToolTipMetadata. - **/ - public void setToolTipMetadata(PropertyMetadata toolTipMetadata) { - this.toolTipMetadata = toolTipMetadata; - } - - - /** - * underline. - * - * @return ModelList - **/ - public ModelList underline(String underline) { - this.underline = underline; - return this; - } - - /** - * When set to **true**, the information in the tab is underlined.. - * @return underline - **/ - @ApiModelProperty(value = "When set to **true**, the information in the tab is underlined.") - public String getUnderline() { - return underline; - } - - /** - * setUnderline. - **/ - public void setUnderline(String underline) { - this.underline = underline; - } - - - /** - * underlineMetadata. - * - * @return ModelList - **/ - public ModelList underlineMetadata(PropertyMetadata underlineMetadata) { - this.underlineMetadata = underlineMetadata; - return this; - } - - /** - * Get underlineMetadata. - * @return underlineMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getUnderlineMetadata() { - return underlineMetadata; - } - - /** - * setUnderlineMetadata. - **/ - public void setUnderlineMetadata(PropertyMetadata underlineMetadata) { - this.underlineMetadata = underlineMetadata; - } - - - /** - * value. - * - * @return ModelList - **/ - public ModelList value(String value) { - this.value = value; - return this; - } - - /** - * The value to use when the item is selected.. - * @return value - **/ - @ApiModelProperty(value = "The value to use when the item is selected.") - public String getValue() { - return value; - } - - /** - * setValue. - **/ - public void setValue(String value) { - this.value = value; - } - - - /** - * valueMetadata. - * - * @return ModelList - **/ - public ModelList valueMetadata(PropertyMetadata valueMetadata) { - this.valueMetadata = valueMetadata; - return this; - } - - /** - * Get valueMetadata. - * @return valueMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getValueMetadata() { - return valueMetadata; - } - - /** - * setValueMetadata. - **/ - public void setValueMetadata(PropertyMetadata valueMetadata) { - this.valueMetadata = valueMetadata; - } - - - /** - * width. - * - * @return ModelList - **/ - public ModelList width(String width) { - this.width = width; - return this; - } - - /** - * Width of the tab in pixels.. - * @return width - **/ - @ApiModelProperty(value = "Width of the tab in pixels.") - public String getWidth() { - return width; - } - - /** - * setWidth. - **/ - public void setWidth(String width) { - this.width = width; - } - - - /** - * widthMetadata. - * - * @return ModelList - **/ - public ModelList widthMetadata(PropertyMetadata widthMetadata) { - this.widthMetadata = widthMetadata; - return this; - } - - /** - * Get widthMetadata. - * @return widthMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getWidthMetadata() { - return widthMetadata; - } - - /** - * setWidthMetadata. - **/ - public void setWidthMetadata(PropertyMetadata widthMetadata) { - this.widthMetadata = widthMetadata; - } - - - /** - * xPosition. - * - * @return ModelList - **/ - public ModelList xPosition(String xPosition) { - this.xPosition = xPosition; - return this; - } - - /** - * This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position.. - * @return xPosition - **/ - @ApiModelProperty(value = "This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position.") - public String getXPosition() { - return xPosition; - } - - /** - * setXPosition. - **/ - public void setXPosition(String xPosition) { - this.xPosition = xPosition; - } - - - /** - * xPositionMetadata. - * - * @return ModelList - **/ - public ModelList xPositionMetadata(PropertyMetadata xPositionMetadata) { - this.xPositionMetadata = xPositionMetadata; - return this; - } - - /** - * Get xPositionMetadata. - * @return xPositionMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getXPositionMetadata() { - return xPositionMetadata; - } - - /** - * setXPositionMetadata. - **/ - public void setXPositionMetadata(PropertyMetadata xPositionMetadata) { - this.xPositionMetadata = xPositionMetadata; - } - - - /** - * yPosition. - * - * @return ModelList - **/ - public ModelList yPosition(String yPosition) { - this.yPosition = yPosition; - return this; - } - - /** - * This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position.. - * @return yPosition - **/ - @ApiModelProperty(value = "This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position.") - public String getYPosition() { - return yPosition; - } - - /** - * setYPosition. - **/ - public void setYPosition(String yPosition) { - this.yPosition = yPosition; - } - - - /** - * yPositionMetadata. - * - * @return ModelList - **/ - public ModelList yPositionMetadata(PropertyMetadata yPositionMetadata) { - this.yPositionMetadata = yPositionMetadata; - return this; - } - - /** - * Get yPositionMetadata. - * @return yPositionMetadata - **/ - @ApiModelProperty(value = "") - public PropertyMetadata getYPositionMetadata() { - return yPositionMetadata; - } - - /** - * setYPositionMetadata. - **/ - public void setYPositionMetadata(PropertyMetadata yPositionMetadata) { - this.yPositionMetadata = yPositionMetadata; - } - - - /** - * 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; - } - ModelList _list = (ModelList) o; - return Objects.equals(this.anchorAllowWhiteSpaceInCharacters, _list.anchorAllowWhiteSpaceInCharacters) && - Objects.equals(this.anchorAllowWhiteSpaceInCharactersMetadata, _list.anchorAllowWhiteSpaceInCharactersMetadata) && - Objects.equals(this.anchorCaseSensitive, _list.anchorCaseSensitive) && - Objects.equals(this.anchorCaseSensitiveMetadata, _list.anchorCaseSensitiveMetadata) && - Objects.equals(this.anchorHorizontalAlignment, _list.anchorHorizontalAlignment) && - Objects.equals(this.anchorHorizontalAlignmentMetadata, _list.anchorHorizontalAlignmentMetadata) && - Objects.equals(this.anchorIgnoreIfNotPresent, _list.anchorIgnoreIfNotPresent) && - Objects.equals(this.anchorIgnoreIfNotPresentMetadata, _list.anchorIgnoreIfNotPresentMetadata) && - Objects.equals(this.anchorMatchWholeWord, _list.anchorMatchWholeWord) && - Objects.equals(this.anchorMatchWholeWordMetadata, _list.anchorMatchWholeWordMetadata) && - Objects.equals(this.anchorString, _list.anchorString) && - Objects.equals(this.anchorStringMetadata, _list.anchorStringMetadata) && - Objects.equals(this.anchorTabProcessorVersion, _list.anchorTabProcessorVersion) && - Objects.equals(this.anchorTabProcessorVersionMetadata, _list.anchorTabProcessorVersionMetadata) && - Objects.equals(this.anchorUnits, _list.anchorUnits) && - Objects.equals(this.anchorUnitsMetadata, _list.anchorUnitsMetadata) && - Objects.equals(this.anchorXOffset, _list.anchorXOffset) && - Objects.equals(this.anchorXOffsetMetadata, _list.anchorXOffsetMetadata) && - Objects.equals(this.anchorYOffset, _list.anchorYOffset) && - Objects.equals(this.anchorYOffsetMetadata, _list.anchorYOffsetMetadata) && - Objects.equals(this.bold, _list.bold) && - Objects.equals(this.boldMetadata, _list.boldMetadata) && - Objects.equals(this.conditionalParentLabel, _list.conditionalParentLabel) && - Objects.equals(this.conditionalParentLabelMetadata, _list.conditionalParentLabelMetadata) && - Objects.equals(this.conditionalParentValue, _list.conditionalParentValue) && - Objects.equals(this.conditionalParentValueMetadata, _list.conditionalParentValueMetadata) && - Objects.equals(this.customTabId, _list.customTabId) && - Objects.equals(this.customTabIdMetadata, _list.customTabIdMetadata) && - Objects.equals(this.documentId, _list.documentId) && - Objects.equals(this.documentIdMetadata, _list.documentIdMetadata) && - Objects.equals(this.errorDetails, _list.errorDetails) && - Objects.equals(this.font, _list.font) && - Objects.equals(this.fontColor, _list.fontColor) && - Objects.equals(this.fontColorMetadata, _list.fontColorMetadata) && - Objects.equals(this.fontMetadata, _list.fontMetadata) && - Objects.equals(this.fontSize, _list.fontSize) && - Objects.equals(this.fontSizeMetadata, _list.fontSizeMetadata) && - Objects.equals(this.formOrder, _list.formOrder) && - Objects.equals(this.formOrderMetadata, _list.formOrderMetadata) && - Objects.equals(this.formPageLabel, _list.formPageLabel) && - Objects.equals(this.formPageLabelMetadata, _list.formPageLabelMetadata) && - Objects.equals(this.formPageNumber, _list.formPageNumber) && - Objects.equals(this.formPageNumberMetadata, _list.formPageNumberMetadata) && - Objects.equals(this.height, _list.height) && - Objects.equals(this.heightMetadata, _list.heightMetadata) && - Objects.equals(this.italic, _list.italic) && - Objects.equals(this.italicMetadata, _list.italicMetadata) && - Objects.equals(this.listItems, _list.listItems) && - Objects.equals(this.listSelectedValue, _list.listSelectedValue) && - Objects.equals(this.listSelectedValueMetadata, _list.listSelectedValueMetadata) && - Objects.equals(this.localePolicy, _list.localePolicy) && - Objects.equals(this.locked, _list.locked) && - Objects.equals(this.lockedMetadata, _list.lockedMetadata) && - Objects.equals(this.mergeField, _list.mergeField) && - Objects.equals(this.mergeFieldXml, _list.mergeFieldXml) && - Objects.equals(this.originalValue, _list.originalValue) && - Objects.equals(this.originalValueMetadata, _list.originalValueMetadata) && - Objects.equals(this.pageNumber, _list.pageNumber) && - Objects.equals(this.pageNumberMetadata, _list.pageNumberMetadata) && - Objects.equals(this.recipientId, _list.recipientId) && - Objects.equals(this.recipientIdGuid, _list.recipientIdGuid) && - Objects.equals(this.recipientIdGuidMetadata, _list.recipientIdGuidMetadata) && - Objects.equals(this.recipientIdMetadata, _list.recipientIdMetadata) && - Objects.equals(this.requireAll, _list.requireAll) && - Objects.equals(this.requireAllMetadata, _list.requireAllMetadata) && - Objects.equals(this.required, _list.required) && - Objects.equals(this.requiredMetadata, _list.requiredMetadata) && - Objects.equals(this.requireInitialOnSharedChange, _list.requireInitialOnSharedChange) && - Objects.equals(this.requireInitialOnSharedChangeMetadata, _list.requireInitialOnSharedChangeMetadata) && - Objects.equals(this.senderRequired, _list.senderRequired) && - Objects.equals(this.senderRequiredMetadata, _list.senderRequiredMetadata) && - Objects.equals(this.shared, _list.shared) && - Objects.equals(this.sharedMetadata, _list.sharedMetadata) && - Objects.equals(this.shareToRecipients, _list.shareToRecipients) && - Objects.equals(this.shareToRecipientsMetadata, _list.shareToRecipientsMetadata) && - Objects.equals(this.smartContractInformation, _list.smartContractInformation) && - Objects.equals(this.source, _list.source) && - Objects.equals(this.status, _list.status) && - Objects.equals(this.statusMetadata, _list.statusMetadata) && - Objects.equals(this.tabGroupLabels, _list.tabGroupLabels) && - Objects.equals(this.tabGroupLabelsMetadata, _list.tabGroupLabelsMetadata) && - Objects.equals(this.tabId, _list.tabId) && - Objects.equals(this.tabIdMetadata, _list.tabIdMetadata) && - Objects.equals(this.tabLabel, _list.tabLabel) && - Objects.equals(this.tabLabelMetadata, _list.tabLabelMetadata) && - Objects.equals(this.tabOrder, _list.tabOrder) && - Objects.equals(this.tabOrderMetadata, _list.tabOrderMetadata) && - Objects.equals(this.tabType, _list.tabType) && - Objects.equals(this.tabTypeMetadata, _list.tabTypeMetadata) && - Objects.equals(this.templateLocked, _list.templateLocked) && - Objects.equals(this.templateLockedMetadata, _list.templateLockedMetadata) && - Objects.equals(this.templateRequired, _list.templateRequired) && - Objects.equals(this.templateRequiredMetadata, _list.templateRequiredMetadata) && - Objects.equals(this.tooltip, _list.tooltip) && - Objects.equals(this.toolTipMetadata, _list.toolTipMetadata) && - Objects.equals(this.underline, _list.underline) && - Objects.equals(this.underlineMetadata, _list.underlineMetadata) && - Objects.equals(this.value, _list.value) && - Objects.equals(this.valueMetadata, _list.valueMetadata) && - Objects.equals(this.width, _list.width) && - Objects.equals(this.widthMetadata, _list.widthMetadata) && - Objects.equals(this.xPosition, _list.xPosition) && - Objects.equals(this.xPositionMetadata, _list.xPositionMetadata) && - Objects.equals(this.yPosition, _list.yPosition) && - Objects.equals(this.yPositionMetadata, _list.yPositionMetadata); - } - - /** - * Returns the HashCode. - */ - @Override - public int hashCode() { - return Objects.hash(anchorAllowWhiteSpaceInCharacters, anchorAllowWhiteSpaceInCharactersMetadata, anchorCaseSensitive, anchorCaseSensitiveMetadata, anchorHorizontalAlignment, anchorHorizontalAlignmentMetadata, anchorIgnoreIfNotPresent, anchorIgnoreIfNotPresentMetadata, anchorMatchWholeWord, anchorMatchWholeWordMetadata, anchorString, anchorStringMetadata, anchorTabProcessorVersion, anchorTabProcessorVersionMetadata, anchorUnits, anchorUnitsMetadata, anchorXOffset, anchorXOffsetMetadata, anchorYOffset, anchorYOffsetMetadata, bold, boldMetadata, conditionalParentLabel, conditionalParentLabelMetadata, conditionalParentValue, conditionalParentValueMetadata, customTabId, customTabIdMetadata, documentId, documentIdMetadata, errorDetails, font, fontColor, fontColorMetadata, fontMetadata, fontSize, fontSizeMetadata, formOrder, formOrderMetadata, formPageLabel, formPageLabelMetadata, formPageNumber, formPageNumberMetadata, height, heightMetadata, italic, italicMetadata, listItems, listSelectedValue, listSelectedValueMetadata, localePolicy, locked, lockedMetadata, mergeField, mergeFieldXml, originalValue, originalValueMetadata, pageNumber, pageNumberMetadata, recipientId, recipientIdGuid, recipientIdGuidMetadata, recipientIdMetadata, requireAll, requireAllMetadata, required, requiredMetadata, requireInitialOnSharedChange, requireInitialOnSharedChangeMetadata, senderRequired, senderRequiredMetadata, shared, sharedMetadata, shareToRecipients, shareToRecipientsMetadata, smartContractInformation, source, status, statusMetadata, tabGroupLabels, tabGroupLabelsMetadata, tabId, tabIdMetadata, tabLabel, tabLabelMetadata, tabOrder, tabOrderMetadata, tabType, tabTypeMetadata, templateLocked, templateLockedMetadata, templateRequired, templateRequiredMetadata, tooltip, toolTipMetadata, underline, underlineMetadata, value, valueMetadata, width, widthMetadata, xPosition, xPositionMetadata, yPosition, yPositionMetadata); - } - - - /** - * Converts the given object to string. - */ - @Override - public String toString() { - StringBuilder sb = new StringBuilder(); - sb.append("class ModelList {\n"); - - sb.append(" anchorAllowWhiteSpaceInCharacters: ").append(toIndentedString(anchorAllowWhiteSpaceInCharacters)).append("\n"); - sb.append(" anchorAllowWhiteSpaceInCharactersMetadata: ").append(toIndentedString(anchorAllowWhiteSpaceInCharactersMetadata)).append("\n"); - sb.append(" anchorCaseSensitive: ").append(toIndentedString(anchorCaseSensitive)).append("\n"); - sb.append(" anchorCaseSensitiveMetadata: ").append(toIndentedString(anchorCaseSensitiveMetadata)).append("\n"); - sb.append(" anchorHorizontalAlignment: ").append(toIndentedString(anchorHorizontalAlignment)).append("\n"); - sb.append(" anchorHorizontalAlignmentMetadata: ").append(toIndentedString(anchorHorizontalAlignmentMetadata)).append("\n"); - sb.append(" anchorIgnoreIfNotPresent: ").append(toIndentedString(anchorIgnoreIfNotPresent)).append("\n"); - sb.append(" anchorIgnoreIfNotPresentMetadata: ").append(toIndentedString(anchorIgnoreIfNotPresentMetadata)).append("\n"); - sb.append(" anchorMatchWholeWord: ").append(toIndentedString(anchorMatchWholeWord)).append("\n"); - sb.append(" anchorMatchWholeWordMetadata: ").append(toIndentedString(anchorMatchWholeWordMetadata)).append("\n"); - sb.append(" anchorString: ").append(toIndentedString(anchorString)).append("\n"); - sb.append(" anchorStringMetadata: ").append(toIndentedString(anchorStringMetadata)).append("\n"); - sb.append(" anchorTabProcessorVersion: ").append(toIndentedString(anchorTabProcessorVersion)).append("\n"); - sb.append(" anchorTabProcessorVersionMetadata: ").append(toIndentedString(anchorTabProcessorVersionMetadata)).append("\n"); - sb.append(" anchorUnits: ").append(toIndentedString(anchorUnits)).append("\n"); - sb.append(" anchorUnitsMetadata: ").append(toIndentedString(anchorUnitsMetadata)).append("\n"); - sb.append(" anchorXOffset: ").append(toIndentedString(anchorXOffset)).append("\n"); - sb.append(" anchorXOffsetMetadata: ").append(toIndentedString(anchorXOffsetMetadata)).append("\n"); - sb.append(" anchorYOffset: ").append(toIndentedString(anchorYOffset)).append("\n"); - sb.append(" anchorYOffsetMetadata: ").append(toIndentedString(anchorYOffsetMetadata)).append("\n"); - sb.append(" bold: ").append(toIndentedString(bold)).append("\n"); - sb.append(" boldMetadata: ").append(toIndentedString(boldMetadata)).append("\n"); - sb.append(" conditionalParentLabel: ").append(toIndentedString(conditionalParentLabel)).append("\n"); - sb.append(" conditionalParentLabelMetadata: ").append(toIndentedString(conditionalParentLabelMetadata)).append("\n"); - sb.append(" conditionalParentValue: ").append(toIndentedString(conditionalParentValue)).append("\n"); - sb.append(" conditionalParentValueMetadata: ").append(toIndentedString(conditionalParentValueMetadata)).append("\n"); - sb.append(" customTabId: ").append(toIndentedString(customTabId)).append("\n"); - sb.append(" customTabIdMetadata: ").append(toIndentedString(customTabIdMetadata)).append("\n"); - sb.append(" documentId: ").append(toIndentedString(documentId)).append("\n"); - sb.append(" documentIdMetadata: ").append(toIndentedString(documentIdMetadata)).append("\n"); - sb.append(" errorDetails: ").append(toIndentedString(errorDetails)).append("\n"); - sb.append(" font: ").append(toIndentedString(font)).append("\n"); - sb.append(" fontColor: ").append(toIndentedString(fontColor)).append("\n"); - sb.append(" fontColorMetadata: ").append(toIndentedString(fontColorMetadata)).append("\n"); - sb.append(" fontMetadata: ").append(toIndentedString(fontMetadata)).append("\n"); - sb.append(" fontSize: ").append(toIndentedString(fontSize)).append("\n"); - sb.append(" fontSizeMetadata: ").append(toIndentedString(fontSizeMetadata)).append("\n"); - sb.append(" formOrder: ").append(toIndentedString(formOrder)).append("\n"); - sb.append(" formOrderMetadata: ").append(toIndentedString(formOrderMetadata)).append("\n"); - sb.append(" formPageLabel: ").append(toIndentedString(formPageLabel)).append("\n"); - sb.append(" formPageLabelMetadata: ").append(toIndentedString(formPageLabelMetadata)).append("\n"); - sb.append(" formPageNumber: ").append(toIndentedString(formPageNumber)).append("\n"); - sb.append(" formPageNumberMetadata: ").append(toIndentedString(formPageNumberMetadata)).append("\n"); - sb.append(" height: ").append(toIndentedString(height)).append("\n"); - sb.append(" heightMetadata: ").append(toIndentedString(heightMetadata)).append("\n"); - sb.append(" italic: ").append(toIndentedString(italic)).append("\n"); - sb.append(" italicMetadata: ").append(toIndentedString(italicMetadata)).append("\n"); - sb.append(" listItems: ").append(toIndentedString(listItems)).append("\n"); - sb.append(" listSelectedValue: ").append(toIndentedString(listSelectedValue)).append("\n"); - sb.append(" listSelectedValueMetadata: ").append(toIndentedString(listSelectedValueMetadata)).append("\n"); - sb.append(" localePolicy: ").append(toIndentedString(localePolicy)).append("\n"); - sb.append(" locked: ").append(toIndentedString(locked)).append("\n"); - sb.append(" lockedMetadata: ").append(toIndentedString(lockedMetadata)).append("\n"); - sb.append(" mergeField: ").append(toIndentedString(mergeField)).append("\n"); - sb.append(" mergeFieldXml: ").append(toIndentedString(mergeFieldXml)).append("\n"); - sb.append(" originalValue: ").append(toIndentedString(originalValue)).append("\n"); - sb.append(" originalValueMetadata: ").append(toIndentedString(originalValueMetadata)).append("\n"); - sb.append(" pageNumber: ").append(toIndentedString(pageNumber)).append("\n"); - sb.append(" pageNumberMetadata: ").append(toIndentedString(pageNumberMetadata)).append("\n"); - sb.append(" recipientId: ").append(toIndentedString(recipientId)).append("\n"); - sb.append(" recipientIdGuid: ").append(toIndentedString(recipientIdGuid)).append("\n"); - sb.append(" recipientIdGuidMetadata: ").append(toIndentedString(recipientIdGuidMetadata)).append("\n"); - sb.append(" recipientIdMetadata: ").append(toIndentedString(recipientIdMetadata)).append("\n"); - sb.append(" requireAll: ").append(toIndentedString(requireAll)).append("\n"); - sb.append(" requireAllMetadata: ").append(toIndentedString(requireAllMetadata)).append("\n"); - sb.append(" required: ").append(toIndentedString(required)).append("\n"); - sb.append(" requiredMetadata: ").append(toIndentedString(requiredMetadata)).append("\n"); - sb.append(" requireInitialOnSharedChange: ").append(toIndentedString(requireInitialOnSharedChange)).append("\n"); - sb.append(" requireInitialOnSharedChangeMetadata: ").append(toIndentedString(requireInitialOnSharedChangeMetadata)).append("\n"); - sb.append(" senderRequired: ").append(toIndentedString(senderRequired)).append("\n"); - sb.append(" senderRequiredMetadata: ").append(toIndentedString(senderRequiredMetadata)).append("\n"); - sb.append(" shared: ").append(toIndentedString(shared)).append("\n"); - 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(" smartContractInformation: ").append(toIndentedString(smartContractInformation)).append("\n"); - sb.append(" source: ").append(toIndentedString(source)).append("\n"); - sb.append(" status: ").append(toIndentedString(status)).append("\n"); - sb.append(" statusMetadata: ").append(toIndentedString(statusMetadata)).append("\n"); - sb.append(" tabGroupLabels: ").append(toIndentedString(tabGroupLabels)).append("\n"); - sb.append(" tabGroupLabelsMetadata: ").append(toIndentedString(tabGroupLabelsMetadata)).append("\n"); - sb.append(" tabId: ").append(toIndentedString(tabId)).append("\n"); - sb.append(" tabIdMetadata: ").append(toIndentedString(tabIdMetadata)).append("\n"); - sb.append(" tabLabel: ").append(toIndentedString(tabLabel)).append("\n"); - sb.append(" tabLabelMetadata: ").append(toIndentedString(tabLabelMetadata)).append("\n"); - sb.append(" tabOrder: ").append(toIndentedString(tabOrder)).append("\n"); - sb.append(" tabOrderMetadata: ").append(toIndentedString(tabOrderMetadata)).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"); - sb.append(" templateLockedMetadata: ").append(toIndentedString(templateLockedMetadata)).append("\n"); - sb.append(" templateRequired: ").append(toIndentedString(templateRequired)).append("\n"); - sb.append(" templateRequiredMetadata: ").append(toIndentedString(templateRequiredMetadata)).append("\n"); - sb.append(" tooltip: ").append(toIndentedString(tooltip)).append("\n"); - sb.append(" toolTipMetadata: ").append(toIndentedString(toolTipMetadata)).append("\n"); - sb.append(" underline: ").append(toIndentedString(underline)).append("\n"); - sb.append(" underlineMetadata: ").append(toIndentedString(underlineMetadata)).append("\n"); - sb.append(" value: ").append(toIndentedString(value)).append("\n"); - sb.append(" valueMetadata: ").append(toIndentedString(valueMetadata)).append("\n"); - sb.append(" width: ").append(toIndentedString(width)).append("\n"); - sb.append(" widthMetadata: ").append(toIndentedString(widthMetadata)).append("\n"); - sb.append(" xPosition: ").append(toIndentedString(xPosition)).append("\n"); - sb.append(" xPositionMetadata: ").append(toIndentedString(xPositionMetadata)).append("\n"); - sb.append(" yPosition: ").append(toIndentedString(yPosition)).append("\n"); - sb.append(" yPositionMetadata: ").append(toIndentedString(yPositionMetadata)).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/Tabs.java b/src/main/java/com/docusign/esign/model/Tabs.java index c5acaf3b..dc295a88 100644 --- a/src/main/java/com/docusign/esign/model/Tabs.java +++ b/src/main/java/com/docusign/esign/model/Tabs.java @@ -1,49 +1,8 @@ package com.docusign.esign.model; import java.util.Objects; -import java.util.Arrays; -import com.docusign.esign.model.Approve; -import com.docusign.esign.model.Checkbox; -import com.docusign.esign.model.CommentThread; -import com.docusign.esign.model.CommissionCounty; -import com.docusign.esign.model.CommissionExpiration; -import com.docusign.esign.model.CommissionNumber; -import com.docusign.esign.model.CommissionState; -import com.docusign.esign.model.Company; -import com.docusign.esign.model.Currency; -import com.docusign.esign.model.DateSigned; -import com.docusign.esign.model.Decline; -import com.docusign.esign.model.Draw; -import com.docusign.esign.model.Email; -import com.docusign.esign.model.EmailAddress; -import com.docusign.esign.model.EnvelopeId; -import com.docusign.esign.model.FirstName; -import com.docusign.esign.model.FormulaTab; -import com.docusign.esign.model.FullName; -import com.docusign.esign.model.InitialHere; -import com.docusign.esign.model.LastName; -import com.docusign.esign.model.ModelList; -import com.docusign.esign.model.Notarize; -import com.docusign.esign.model.NotarySeal; -import com.docusign.esign.model.Note; -import com.docusign.esign.model.Number; -import com.docusign.esign.model.PhoneNumber; -import com.docusign.esign.model.PolyLineOverlay; -import com.docusign.esign.model.PrefillTabs; -import com.docusign.esign.model.RadioGroup; -import com.docusign.esign.model.SignHere; -import com.docusign.esign.model.SignerAttachment; -import com.docusign.esign.model.SmartSection; -import com.docusign.esign.model.Ssn; -import com.docusign.esign.model.TabGroup; -import com.docusign.esign.model.Text; -import com.docusign.esign.model.Title; -import com.docusign.esign.model.View; -import com.docusign.esign.model.Zip; + import com.fasterxml.jackson.annotation.JsonProperty; -import com.fasterxml.jackson.annotation.JsonCreator; -import com.fasterxml.jackson.annotation.JsonValue; -import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; /** @@ -116,7 +75,7 @@ public class Tabs { private java.util.List lastNameTabs = null; @JsonProperty("listTabs") - private java.util.List listTabs = null; + private java.util.List listTabs = null; @JsonProperty("notarizeTabs") private java.util.List notarizeTabs = null; @@ -179,7 +138,7 @@ public Tabs approveTabs(java.util.List approveTabs) { this.approveTabs = approveTabs; return this; } - + /** * addApproveTabsItem. * @@ -219,7 +178,7 @@ public Tabs checkboxTabs(java.util.List checkboxTabs) { this.checkboxTabs = checkboxTabs; return this; } - + /** * addCheckboxTabsItem. * @@ -259,7 +218,7 @@ public Tabs commentThreadTabs(java.util.List commentThreadTabs) { this.commentThreadTabs = commentThreadTabs; return this; } - + /** * addCommentThreadTabsItem. * @@ -299,7 +258,7 @@ public Tabs commissionCountyTabs(java.util.List commissionCoun this.commissionCountyTabs = commissionCountyTabs; return this; } - + /** * addCommissionCountyTabsItem. * @@ -339,7 +298,7 @@ public Tabs commissionExpirationTabs(java.util.List commis this.commissionExpirationTabs = commissionExpirationTabs; return this; } - + /** * addCommissionExpirationTabsItem. * @@ -379,7 +338,7 @@ public Tabs commissionNumberTabs(java.util.List commissionNumb this.commissionNumberTabs = commissionNumberTabs; return this; } - + /** * addCommissionNumberTabsItem. * @@ -419,7 +378,7 @@ public Tabs commissionStateTabs(java.util.List commissionStateT this.commissionStateTabs = commissionStateTabs; return this; } - + /** * addCommissionStateTabsItem. * @@ -459,7 +418,7 @@ public Tabs companyTabs(java.util.List companyTabs) { this.companyTabs = companyTabs; return this; } - + /** * addCompanyTabsItem. * @@ -499,7 +458,7 @@ public Tabs currencyTabs(java.util.List currencyTabs) { this.currencyTabs = currencyTabs; return this; } - + /** * addCurrencyTabsItem. * @@ -539,7 +498,7 @@ public Tabs dateSignedTabs(java.util.List dateSignedTabs) { this.dateSignedTabs = dateSignedTabs; return this; } - + /** * addDateSignedTabsItem. * @@ -579,7 +538,7 @@ public Tabs dateTabs(java.util.List dateTabs) { this.dateTabs = dateTabs; return this; } - + /** * addDateTabsItem. * @@ -619,7 +578,7 @@ public Tabs declineTabs(java.util.List declineTabs) { this.declineTabs = declineTabs; return this; } - + /** * addDeclineTabsItem. * @@ -659,7 +618,7 @@ public Tabs drawTabs(java.util.List drawTabs) { this.drawTabs = drawTabs; return this; } - + /** * addDrawTabsItem. * @@ -699,7 +658,7 @@ public Tabs emailAddressTabs(java.util.List emailAddressTabs) { this.emailAddressTabs = emailAddressTabs; return this; } - + /** * addEmailAddressTabsItem. * @@ -739,7 +698,7 @@ public Tabs emailTabs(java.util.List emailTabs) { this.emailTabs = emailTabs; return this; } - + /** * addEmailTabsItem. * @@ -779,7 +738,7 @@ public Tabs envelopeIdTabs(java.util.List envelopeIdTabs) { this.envelopeIdTabs = envelopeIdTabs; return this; } - + /** * addEnvelopeIdTabsItem. * @@ -819,7 +778,7 @@ public Tabs firstNameTabs(java.util.List firstNameTabs) { this.firstNameTabs = firstNameTabs; return this; } - + /** * addFirstNameTabsItem. * @@ -859,7 +818,7 @@ public Tabs formulaTabs(java.util.List formulaTabs) { this.formulaTabs = formulaTabs; return this; } - + /** * addFormulaTabsItem. * @@ -899,7 +858,7 @@ public Tabs fullNameTabs(java.util.List fullNameTabs) { this.fullNameTabs = fullNameTabs; return this; } - + /** * addFullNameTabsItem. * @@ -939,7 +898,7 @@ public Tabs initialHereTabs(java.util.List initialHereTabs) { this.initialHereTabs = initialHereTabs; return this; } - + /** * addInitialHereTabsItem. * @@ -979,7 +938,7 @@ public Tabs lastNameTabs(java.util.List lastNameTabs) { this.lastNameTabs = lastNameTabs; return this; } - + /** * addLastNameTabsItem. * @@ -1015,19 +974,19 @@ public void setLastNameTabs(java.util.List lastNameTabs) { * * @return Tabs **/ - public Tabs listTabs(java.util.List listTabs) { + public Tabs listTabs(java.util.List listTabs) { this.listTabs = listTabs; return this; } - + /** * addListTabsItem. * * @return Tabs **/ - public Tabs addListTabsItem(ModelList listTabsItem) { + public Tabs addListTabsItem(List listTabsItem) { if (this.listTabs == null) { - this.listTabs = new java.util.ArrayList(); + this.listTabs = new java.util.ArrayList(); } this.listTabs.add(listTabsItem); return this; @@ -1038,14 +997,14 @@ public Tabs addListTabsItem(ModelList listTabsItem) { * @return listTabs **/ @ApiModelProperty(value = "Specify this tag to give your recipient a list of options, presented as a drop-down list, from which they can select.") - public java.util.List getListTabs() { + public java.util.List getListTabs() { return listTabs; } /** * setListTabs. **/ - public void setListTabs(java.util.List listTabs) { + public void setListTabs(java.util.List listTabs) { this.listTabs = listTabs; } @@ -1059,7 +1018,7 @@ public Tabs notarizeTabs(java.util.List notarizeTabs) { this.notarizeTabs = notarizeTabs; return this; } - + /** * addNotarizeTabsItem. * @@ -1099,7 +1058,7 @@ public Tabs notarySealTabs(java.util.List notarySealTabs) { this.notarySealTabs = notarySealTabs; return this; } - + /** * addNotarySealTabsItem. * @@ -1139,7 +1098,7 @@ public Tabs noteTabs(java.util.List noteTabs) { this.noteTabs = noteTabs; return this; } - + /** * addNoteTabsItem. * @@ -1179,7 +1138,7 @@ public Tabs numberTabs(java.util.List numberTabs) { this.numberTabs = numberTabs; return this; } - + /** * addNumberTabsItem. * @@ -1219,7 +1178,7 @@ public Tabs phoneNumberTabs(java.util.List phoneNumberTabs) { this.phoneNumberTabs = phoneNumberTabs; return this; } - + /** * addPhoneNumberTabsItem. * @@ -1259,7 +1218,7 @@ public Tabs polyLineOverlayTabs(java.util.List polyLineOverlayT this.polyLineOverlayTabs = polyLineOverlayTabs; return this; } - + /** * addPolyLineOverlayTabsItem. * @@ -1326,7 +1285,7 @@ public Tabs radioGroupTabs(java.util.List radioGroupTabs) { this.radioGroupTabs = radioGroupTabs; return this; } - + /** * addRadioGroupTabsItem. * @@ -1366,7 +1325,7 @@ public Tabs signerAttachmentTabs(java.util.List signerAttachme this.signerAttachmentTabs = signerAttachmentTabs; return this; } - + /** * addSignerAttachmentTabsItem. * @@ -1406,7 +1365,7 @@ public Tabs signHereTabs(java.util.List signHereTabs) { this.signHereTabs = signHereTabs; return this; } - + /** * addSignHereTabsItem. * @@ -1446,7 +1405,7 @@ public Tabs smartSectionTabs(java.util.List smartSectionTabs) { this.smartSectionTabs = smartSectionTabs; return this; } - + /** * addSmartSectionTabsItem. * @@ -1486,7 +1445,7 @@ public Tabs ssnTabs(java.util.List ssnTabs) { this.ssnTabs = ssnTabs; return this; } - + /** * addSsnTabsItem. * @@ -1526,7 +1485,7 @@ public Tabs tabGroups(java.util.List tabGroups) { this.tabGroups = tabGroups; return this; } - + /** * addTabGroupsItem. * @@ -1566,7 +1525,7 @@ public Tabs textTabs(java.util.List textTabs) { this.textTabs = textTabs; return this; } - + /** * addTextTabsItem. * @@ -1606,7 +1565,7 @@ public Tabs titleTabs(java.util.List titleTabs) { this.titleTabs = titleTabs; return this; } - + /** * addTitleTabsItem. * @@ -1646,7 +1605,7 @@ public Tabs viewTabs(java.util.List<View> viewTabs) { this.viewTabs = viewTabs; return this; } - + /** * addViewTabsItem. * @@ -1686,7 +1645,7 @@ public Tabs zipTabs(java.util.List<Zip> zipTabs) { this.zipTabs = zipTabs; return this; } - + /** * addZipTabsItem. * @@ -1788,7 +1747,7 @@ public int hashCode() { public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Tabs {\n"); - + sb.append(" approveTabs: ").append(toIndentedString(approveTabs)).append("\n"); sb.append(" checkboxTabs: ").append(toIndentedString(checkboxTabs)).append("\n"); sb.append(" commentThreadTabs: ").append(toIndentedString(commentThreadTabs)).append("\n"); diff --git a/src/main/java/com/docusign/esign/model/TemplateTabs.java b/src/main/java/com/docusign/esign/model/TemplateTabs.java index 598b29b2..9aa56d65 100644 --- a/src/main/java/com/docusign/esign/model/TemplateTabs.java +++ b/src/main/java/com/docusign/esign/model/TemplateTabs.java @@ -1,49 +1,8 @@ package com.docusign.esign.model; import java.util.Objects; -import java.util.Arrays; -import com.docusign.esign.model.Approve; -import com.docusign.esign.model.Checkbox; -import com.docusign.esign.model.CommentThread; -import com.docusign.esign.model.CommissionCounty; -import com.docusign.esign.model.CommissionExpiration; -import com.docusign.esign.model.CommissionNumber; -import com.docusign.esign.model.CommissionState; -import com.docusign.esign.model.Company; -import com.docusign.esign.model.Currency; -import com.docusign.esign.model.DateSigned; -import com.docusign.esign.model.Decline; -import com.docusign.esign.model.Draw; -import com.docusign.esign.model.Email; -import com.docusign.esign.model.EmailAddress; -import com.docusign.esign.model.EnvelopeId; -import com.docusign.esign.model.FirstName; -import com.docusign.esign.model.FormulaTab; -import com.docusign.esign.model.FullName; -import com.docusign.esign.model.InitialHere; -import com.docusign.esign.model.LastName; -import com.docusign.esign.model.ModelList; -import com.docusign.esign.model.Notarize; -import com.docusign.esign.model.NotarySeal; -import com.docusign.esign.model.Note; -import com.docusign.esign.model.Number; -import com.docusign.esign.model.PhoneNumber; -import com.docusign.esign.model.PolyLineOverlay; -import com.docusign.esign.model.PrefillTabs; -import com.docusign.esign.model.RadioGroup; -import com.docusign.esign.model.SignHere; -import com.docusign.esign.model.SignerAttachment; -import com.docusign.esign.model.SmartSection; -import com.docusign.esign.model.Ssn; -import com.docusign.esign.model.TabGroup; -import com.docusign.esign.model.Text; -import com.docusign.esign.model.Title; -import com.docusign.esign.model.View; -import com.docusign.esign.model.Zip; + import com.fasterxml.jackson.annotation.JsonProperty; -import com.fasterxml.jackson.annotation.JsonCreator; -import com.fasterxml.jackson.annotation.JsonValue; -import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; /** @@ -116,7 +75,7 @@ public class TemplateTabs { private java.util.List<LastName> lastNameTabs = null; @JsonProperty("listTabs") - private java.util.List<ModelList> listTabs = null; + private java.util.List<List> listTabs = null; @JsonProperty("notarizeTabs") private java.util.List<Notarize> notarizeTabs = null; @@ -179,7 +138,7 @@ public TemplateTabs approveTabs(java.util.List<Approve> approveTabs) { this.approveTabs = approveTabs; return this; } - + /** * addApproveTabsItem. * @@ -219,7 +178,7 @@ public TemplateTabs checkboxTabs(java.util.List<Checkbox> checkboxTabs) { this.checkboxTabs = checkboxTabs; return this; } - + /** * addCheckboxTabsItem. * @@ -259,7 +218,7 @@ public TemplateTabs commentThreadTabs(java.util.List<CommentThread> commentThrea this.commentThreadTabs = commentThreadTabs; return this; } - + /** * addCommentThreadTabsItem. * @@ -299,7 +258,7 @@ public TemplateTabs commissionCountyTabs(java.util.List<CommissionCounty> commis this.commissionCountyTabs = commissionCountyTabs; return this; } - + /** * addCommissionCountyTabsItem. * @@ -339,7 +298,7 @@ public TemplateTabs commissionExpirationTabs(java.util.List<CommissionExpiration this.commissionExpirationTabs = commissionExpirationTabs; return this; } - + /** * addCommissionExpirationTabsItem. * @@ -379,7 +338,7 @@ public TemplateTabs commissionNumberTabs(java.util.List<CommissionNumber> commis this.commissionNumberTabs = commissionNumberTabs; return this; } - + /** * addCommissionNumberTabsItem. * @@ -419,7 +378,7 @@ public TemplateTabs commissionStateTabs(java.util.List<CommissionState> commissi this.commissionStateTabs = commissionStateTabs; return this; } - + /** * addCommissionStateTabsItem. * @@ -459,7 +418,7 @@ public TemplateTabs companyTabs(java.util.List<Company> companyTabs) { this.companyTabs = companyTabs; return this; } - + /** * addCompanyTabsItem. * @@ -499,7 +458,7 @@ public TemplateTabs currencyTabs(java.util.List<Currency> currencyTabs) { this.currencyTabs = currencyTabs; return this; } - + /** * addCurrencyTabsItem. * @@ -539,7 +498,7 @@ public TemplateTabs dateSignedTabs(java.util.List<DateSigned> dateSignedTabs) { this.dateSignedTabs = dateSignedTabs; return this; } - + /** * addDateSignedTabsItem. * @@ -579,7 +538,7 @@ public TemplateTabs dateTabs(java.util.List<com.docusign.esign.model.Date> dateT this.dateTabs = dateTabs; return this; } - + /** * addDateTabsItem. * @@ -619,7 +578,7 @@ public TemplateTabs declineTabs(java.util.List<Decline> declineTabs) { this.declineTabs = declineTabs; return this; } - + /** * addDeclineTabsItem. * @@ -659,7 +618,7 @@ public TemplateTabs drawTabs(java.util.List<Draw> drawTabs) { this.drawTabs = drawTabs; return this; } - + /** * addDrawTabsItem. * @@ -699,7 +658,7 @@ public TemplateTabs emailAddressTabs(java.util.List<EmailAddress> emailAddressTa this.emailAddressTabs = emailAddressTabs; return this; } - + /** * addEmailAddressTabsItem. * @@ -739,7 +698,7 @@ public TemplateTabs emailTabs(java.util.List<Email> emailTabs) { this.emailTabs = emailTabs; return this; } - + /** * addEmailTabsItem. * @@ -779,7 +738,7 @@ public TemplateTabs envelopeIdTabs(java.util.List<EnvelopeId> envelopeIdTabs) { this.envelopeIdTabs = envelopeIdTabs; return this; } - + /** * addEnvelopeIdTabsItem. * @@ -819,7 +778,7 @@ public TemplateTabs firstNameTabs(java.util.List<FirstName> firstNameTabs) { this.firstNameTabs = firstNameTabs; return this; } - + /** * addFirstNameTabsItem. * @@ -859,7 +818,7 @@ public TemplateTabs formulaTabs(java.util.List<FormulaTab> formulaTabs) { this.formulaTabs = formulaTabs; return this; } - + /** * addFormulaTabsItem. * @@ -899,7 +858,7 @@ public TemplateTabs fullNameTabs(java.util.List<FullName> fullNameTabs) { this.fullNameTabs = fullNameTabs; return this; } - + /** * addFullNameTabsItem. * @@ -939,7 +898,7 @@ public TemplateTabs initialHereTabs(java.util.List<InitialHere> initialHereTabs) this.initialHereTabs = initialHereTabs; return this; } - + /** * addInitialHereTabsItem. * @@ -979,7 +938,7 @@ public TemplateTabs lastNameTabs(java.util.List<LastName> lastNameTabs) { this.lastNameTabs = lastNameTabs; return this; } - + /** * addLastNameTabsItem. * @@ -1015,19 +974,19 @@ public void setLastNameTabs(java.util.List<LastName> lastNameTabs) { * * @return TemplateTabs **/ - public TemplateTabs listTabs(java.util.List<ModelList> listTabs) { + public TemplateTabs listTabs(java.util.List<List> listTabs) { this.listTabs = listTabs; return this; } - + /** * addListTabsItem. * * @return TemplateTabs **/ - public TemplateTabs addListTabsItem(ModelList listTabsItem) { + public TemplateTabs addListTabsItem(List listTabsItem) { if (this.listTabs == null) { - this.listTabs = new java.util.ArrayList<ModelList>(); + this.listTabs = new java.util.ArrayList<List>(); } this.listTabs.add(listTabsItem); return this; @@ -1038,14 +997,14 @@ public TemplateTabs addListTabsItem(ModelList listTabsItem) { * @return listTabs **/ @ApiModelProperty(value = "Specify this tag to give your recipient a list of options, presented as a drop-down list, from which they can select.") - public java.util.List<ModelList> getListTabs() { + public java.util.List<List> getListTabs() { return listTabs; } /** * setListTabs. **/ - public void setListTabs(java.util.List<ModelList> listTabs) { + public void setListTabs(java.util.List<List> listTabs) { this.listTabs = listTabs; } @@ -1059,7 +1018,7 @@ public TemplateTabs notarizeTabs(java.util.List<Notarize> notarizeTabs) { this.notarizeTabs = notarizeTabs; return this; } - + /** * addNotarizeTabsItem. * @@ -1099,7 +1058,7 @@ public TemplateTabs notarySealTabs(java.util.List<NotarySeal> notarySealTabs) { this.notarySealTabs = notarySealTabs; return this; } - + /** * addNotarySealTabsItem. * @@ -1139,7 +1098,7 @@ public TemplateTabs noteTabs(java.util.List<Note> noteTabs) { this.noteTabs = noteTabs; return this; } - + /** * addNoteTabsItem. * @@ -1179,7 +1138,7 @@ public TemplateTabs numberTabs(java.util.List<Number> numberTabs) { this.numberTabs = numberTabs; return this; } - + /** * addNumberTabsItem. * @@ -1219,7 +1178,7 @@ public TemplateTabs phoneNumberTabs(java.util.List<PhoneNumber> phoneNumberTabs) this.phoneNumberTabs = phoneNumberTabs; return this; } - + /** * addPhoneNumberTabsItem. * @@ -1259,7 +1218,7 @@ public TemplateTabs polyLineOverlayTabs(java.util.List<PolyLineOverlay> polyLine this.polyLineOverlayTabs = polyLineOverlayTabs; return this; } - + /** * addPolyLineOverlayTabsItem. * @@ -1326,7 +1285,7 @@ public TemplateTabs radioGroupTabs(java.util.List<RadioGroup> radioGroupTabs) { this.radioGroupTabs = radioGroupTabs; return this; } - + /** * addRadioGroupTabsItem. * @@ -1366,7 +1325,7 @@ public TemplateTabs signerAttachmentTabs(java.util.List<SignerAttachment> signer this.signerAttachmentTabs = signerAttachmentTabs; return this; } - + /** * addSignerAttachmentTabsItem. * @@ -1406,7 +1365,7 @@ public TemplateTabs signHereTabs(java.util.List<SignHere> signHereTabs) { this.signHereTabs = signHereTabs; return this; } - + /** * addSignHereTabsItem. * @@ -1446,7 +1405,7 @@ public TemplateTabs smartSectionTabs(java.util.List<SmartSection> smartSectionTa this.smartSectionTabs = smartSectionTabs; return this; } - + /** * addSmartSectionTabsItem. * @@ -1486,7 +1445,7 @@ public TemplateTabs ssnTabs(java.util.List<Ssn> ssnTabs) { this.ssnTabs = ssnTabs; return this; } - + /** * addSsnTabsItem. * @@ -1526,7 +1485,7 @@ public TemplateTabs tabGroups(java.util.List<TabGroup> tabGroups) { this.tabGroups = tabGroups; return this; } - + /** * addTabGroupsItem. * @@ -1566,7 +1525,7 @@ public TemplateTabs textTabs(java.util.List<Text> textTabs) { this.textTabs = textTabs; return this; } - + /** * addTextTabsItem. * @@ -1606,7 +1565,7 @@ public TemplateTabs titleTabs(java.util.List<Title> titleTabs) { this.titleTabs = titleTabs; return this; } - + /** * addTitleTabsItem. * @@ -1646,7 +1605,7 @@ public TemplateTabs viewTabs(java.util.List<View> viewTabs) { this.viewTabs = viewTabs; return this; } - + /** * addViewTabsItem. * @@ -1686,7 +1645,7 @@ public TemplateTabs zipTabs(java.util.List<Zip> zipTabs) { this.zipTabs = zipTabs; return this; } - + /** * addZipTabsItem. * @@ -1788,7 +1747,7 @@ public int hashCode() { public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TemplateTabs {\n"); - + sb.append(" approveTabs: ").append(toIndentedString(approveTabs)).append("\n"); sb.append(" checkboxTabs: ").append(toIndentedString(checkboxTabs)).append("\n"); sb.append(" commentThreadTabs: ").append(toIndentedString(commentThreadTabs)).append("\n");