diff --git a/CHANGELOG.md b/CHANGELOG.md index 00754770..7d2c324c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes. +## [v7.0.0] - eSignature API v2.1-26.2.01.01 - 2026-07-01 +### Changed +- Fixed CreateChunkedUpload sending incorrect Content-Type: multipart/form-data instead of application/json. +- Added support for version v2.1-26.2.01.01 of the DocuSign ESignature API. +- Updated the SDK release version. + ## [v7.0.0.rc1] - eSignature API v2.1-26.2.00.00 - 2026-06-03 ### Breaking Changes - Groups API: ListGroupUsers, ListGroupUsersAsync, and their WithHttpInfo variants now return GroupUsersResponse diff --git a/README.md b/README.md index 3f2bef2a..7326e951 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ This client SDK is provided as open source, which enables you to customize its f ### Version Information - **API version**: v2.1 -- **Latest SDK version**: 7.0.0.rc1 +- **Latest SDK version**: 7.0.0 ## Requirements diff --git a/lib/docusign_esign.rb b/lib/docusign_esign.rb index 1522fde9..b1ec4b2c 100644 --- a/lib/docusign_esign.rb +++ b/lib/docusign_esign.rb @@ -66,6 +66,7 @@ require 'docusign_esign/models/authentication_method' require 'docusign_esign/models/authentication_status' require 'docusign_esign/models/authorization_user' +require 'docusign_esign/models/authorized_signatory' require 'docusign_esign/models/bcc_email_address' require 'docusign_esign/models/bcc_email_archive' require 'docusign_esign/models/bcc_email_archive_history' diff --git a/lib/docusign_esign/api/accounts_api.rb b/lib/docusign_esign/api/accounts_api.rb index 058a13f4..fc077f4b 100644 --- a/lib/docusign_esign/api/accounts_api.rb +++ b/lib/docusign_esign/api/accounts_api.rb @@ -140,6 +140,12 @@ class GetAgentUserAuthorizationsOptions # attr_accessor :start_position + # + attr_accessor :task_source + + # + attr_accessor :task_type + # attr_accessor :user_name_substring @@ -218,6 +224,12 @@ class GetPrincipalUserAuthorizationsOptions # attr_accessor :start_position + # + attr_accessor :task_source + + # + attr_accessor :task_type + # attr_accessor :user_name_substring @@ -1727,6 +1739,8 @@ def get_agent_user_authorizations_with_http_info(account_id, user_id, options = query_params[:'include_closed_users'] = options.include_closed_users if !options.include_closed_users.nil? query_params[:'permissions'] = options.permissions if !options.permissions.nil? query_params[:'start_position'] = options.start_position if !options.start_position.nil? + query_params[:'task_source'] = options.task_source if !options.task_source.nil? + query_params[:'task_type'] = options.task_type if !options.task_type.nil? query_params[:'user_name_substring'] = options.user_name_substring if !options.user_name_substring.nil? # header parameters @@ -2133,108 +2147,6 @@ def get_brand_resources_by_content_type_with_http_info(account_id, brand_id, res return data, status_code, headers end - # Gets completion rate for the template - # - # @param account_id The external account number (int) or account ID Guid. - # @param template_id The ID of the template being accessed. - # @return [TemplateCompletionRateResponse] - def get_completion_rate_for_template(account_id, template_id) - data, _status_code, _headers = get_completion_rate_for_template_with_http_info(account_id, template_id) - return data - end - - # Gets completion rate for the template - # - # @param account_id The external account number (int) or account ID Guid. - # @param template_id The ID of the template being accessed. - # @return [Array<(TemplateCompletionRateResponse, Fixnum, Hash)>] TemplateCompletionRateResponse data, response status code and response headers - def get_completion_rate_for_template_with_http_info(account_id, template_id) - if @api_client.config.debugging - @api_client.config.logger.debug "Calling API: AccountsApi.get_completion_rate_for_template ..." - end - # verify the required parameter 'account_id' is set - fail ArgumentError, "Missing the required parameter 'account_id' when calling AccountsApi.get_completion_rate_for_template" if account_id.nil? - # verify the required parameter 'template_id' is set - fail ArgumentError, "Missing the required parameter 'template_id' when calling AccountsApi.get_completion_rate_for_template" if template_id.nil? - # resource path - local_var_path = "/v2.1/accounts/{accountId}/templates/{templateId}/insights/completionRate".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'templateId' + '}', template_id.to_s) - - # query parameters - query_params = {} - - # header parameters - header_params = {} - # HTTP header 'Accept' (if needed) - header_params['Accept'] = @api_client.select_header_accept(['application/json']) - - # form parameters - form_params = {} - - # http body (model) - post_body = nil - auth_names = [] - data, status_code, headers = @api_client.call_api(:GET, local_var_path, - :header_params => header_params, - :query_params => query_params, - :form_params => form_params, - :body => post_body, - :auth_names => auth_names, - :return_type => 'TemplateCompletionRateResponse') - if @api_client.config.debugging - @api_client.config.logger.debug "API called: AccountsApi#get_completion_rate_for_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" - end - return data, status_code, headers - end - - # Gets completion rate for the user - # - # @param account_id The external account number (int) or account ID Guid. - # @return [UserCompletionRateResponse] - def get_completion_rate_for_template_owner(account_id) - data, _status_code, _headers = get_completion_rate_for_template_owner_with_http_info(account_id) - return data - end - - # Gets completion rate for the user - # - # @param account_id The external account number (int) or account ID Guid. - # @return [Array<(UserCompletionRateResponse, Fixnum, Hash)>] UserCompletionRateResponse data, response status code and response headers - def get_completion_rate_for_template_owner_with_http_info(account_id) - if @api_client.config.debugging - @api_client.config.logger.debug "Calling API: AccountsApi.get_completion_rate_for_template_owner ..." - end - # verify the required parameter 'account_id' is set - fail ArgumentError, "Missing the required parameter 'account_id' when calling AccountsApi.get_completion_rate_for_template_owner" if account_id.nil? - # resource path - local_var_path = "/v2.1/accounts/{accountId}/templates/insights/completionRate".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s) - - # query parameters - query_params = {} - - # header parameters - header_params = {} - # HTTP header 'Accept' (if needed) - header_params['Accept'] = @api_client.select_header_accept(['application/json']) - - # form parameters - form_params = {} - - # http body (model) - post_body = nil - auth_names = [] - data, status_code, headers = @api_client.call_api(:GET, local_var_path, - :header_params => header_params, - :query_params => query_params, - :form_params => form_params, - :body => post_body, - :auth_names => auth_names, - :return_type => 'UserCompletionRateResponse') - if @api_client.config.debugging - @api_client.config.logger.debug "API called: AccountsApi#get_completion_rate_for_template_owner\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" - end - return data, status_code, headers - end - # 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. # @param account_id The external account number (int) or account ID Guid. @@ -2722,6 +2634,8 @@ def get_principal_user_authorizations_with_http_info(account_id, user_id, option query_params[:'include_closed_users'] = options.include_closed_users if !options.include_closed_users.nil? query_params[:'permissions'] = options.permissions if !options.permissions.nil? query_params[:'start_position'] = options.start_position if !options.start_position.nil? + query_params[:'task_source'] = options.task_source if !options.task_source.nil? + query_params[:'task_type'] = options.task_type if !options.task_type.nil? query_params[:'user_name_substring'] = options.user_name_substring if !options.user_name_substring.nil? # header parameters diff --git a/lib/docusign_esign/api/envelopes_api.rb b/lib/docusign_esign/api/envelopes_api.rb index f29edaf8..946d4417 100644 --- a/lib/docusign_esign/api/envelopes_api.rb +++ b/lib/docusign_esign/api/envelopes_api.rb @@ -715,8 +715,6 @@ def create_chunked_upload_with_http_info(account_id, chunked_upload_request) header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) - # HTTP header 'Content-Type' - header_params['Content-Type'] = @api_client.select_header_content_type(['multipart/form-data']) # form parameters form_params = {} @@ -4657,6 +4655,116 @@ def get_envelope_workflow_step_definition_with_http_info(account_id, envelope_id return data, status_code, headers end + # Gets a single envelope share by shareId + # + # @param account_id The external account number (int) or account ID Guid. + # @param envelope_id The envelopeId Guid of the envelope being accessed. + # @param share_id + # @return [EnvelopesShareResponse] + def get_envelopes_share(account_id, envelope_id, share_id) + data, _status_code, _headers = get_envelopes_share_with_http_info(account_id, envelope_id, share_id) + return data + end + + # Gets a single envelope share by shareId + # + # @param account_id The external account number (int) or account ID Guid. + # @param envelope_id The envelopeId Guid of the envelope being accessed. + # @param share_id + # @return [Array<(EnvelopesShareResponse, Fixnum, Hash)>] EnvelopesShareResponse data, response status code and response headers + def get_envelopes_share_with_http_info(account_id, envelope_id, share_id) + if @api_client.config.debugging + @api_client.config.logger.debug "Calling API: EnvelopesApi.get_envelopes_share ..." + end + # verify the required parameter 'account_id' is set + fail ArgumentError, "Missing the required parameter 'account_id' when calling EnvelopesApi.get_envelopes_share" if account_id.nil? + # verify the required parameter 'envelope_id' is set + fail ArgumentError, "Missing the required parameter 'envelope_id' when calling EnvelopesApi.get_envelopes_share" if envelope_id.nil? + # verify the required parameter 'share_id' is set + fail ArgumentError, "Missing the required parameter 'share_id' when calling EnvelopesApi.get_envelopes_share" if share_id.nil? + # resource path + local_var_path = "/v2.1/accounts/{accountId}/envelopes/{envelopeId}/shares/{shareId}".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'envelopeId' + '}', envelope_id.to_s).sub('{' + 'shareId' + '}', share_id.to_s) + + # query parameters + query_params = {} + + # header parameters + header_params = {} + # HTTP header 'Accept' (if needed) + header_params['Accept'] = @api_client.select_header_accept(['application/json']) + + # form parameters + form_params = {} + + # http body (model) + post_body = nil + auth_names = [] + data, status_code, headers = @api_client.call_api(:GET, local_var_path, + :header_params => header_params, + :query_params => query_params, + :form_params => form_params, + :body => post_body, + :auth_names => auth_names, + :return_type => 'EnvelopesShareResponse') + if @api_client.config.debugging + @api_client.config.logger.debug "API called: EnvelopesApi#get_envelopes_share\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + end + return data, status_code, headers + end + + # Gets all shares for an envelope + # + # @param account_id The external account number (int) or account ID Guid. + # @param envelope_id The envelopeId Guid of the envelope being accessed. + # @return [EnvelopesSharesResponse] + def get_envelopes_shares(account_id, envelope_id) + data, _status_code, _headers = get_envelopes_shares_with_http_info(account_id, envelope_id) + return data + end + + # Gets all shares for an envelope + # + # @param account_id The external account number (int) or account ID Guid. + # @param envelope_id The envelopeId Guid of the envelope being accessed. + # @return [Array<(EnvelopesSharesResponse, Fixnum, Hash)>] EnvelopesSharesResponse data, response status code and response headers + def get_envelopes_shares_with_http_info(account_id, envelope_id) + if @api_client.config.debugging + @api_client.config.logger.debug "Calling API: EnvelopesApi.get_envelopes_shares ..." + end + # verify the required parameter 'account_id' is set + fail ArgumentError, "Missing the required parameter 'account_id' when calling EnvelopesApi.get_envelopes_shares" if account_id.nil? + # verify the required parameter 'envelope_id' is set + fail ArgumentError, "Missing the required parameter 'envelope_id' when calling EnvelopesApi.get_envelopes_shares" if envelope_id.nil? + # resource path + local_var_path = "/v2.1/accounts/{accountId}/envelopes/{envelopeId}/shares".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'envelopeId' + '}', envelope_id.to_s) + + # query parameters + query_params = {} + + # header parameters + header_params = {} + # HTTP header 'Accept' (if needed) + header_params['Accept'] = @api_client.select_header_accept(['application/json']) + + # form parameters + form_params = {} + + # http body (model) + post_body = nil + auth_names = [] + data, status_code, headers = @api_client.call_api(:GET, local_var_path, + :header_params => header_params, + :query_params => query_params, + :form_params => form_params, + :body => post_body, + :auth_names => auth_names, + :return_type => 'EnvelopesSharesResponse') + if @api_client.config.debugging + @api_client.config.logger.debug "API called: EnvelopesApi#get_envelopes_shares\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + end + return data, status_code, headers + end + # Returns envelope form data for an existing envelope. # This method downloads the envelope and tab data (also called form data) from any in-process, completed, or canceled envelope that you sent or that is shared with you. Recipients who are also full administrators on an account can view form data for any envelopes that another user on the account has sent to them. **Note:** To use this feature, the Sending Setting \"Allow sender to download form data\" must be enabled for the account. ### Related topics - [How to get envelope tab values](/docs/esign-rest-api/how-to/get-envelope-tab-values/) # @param account_id The external account number (int) or account ID Guid. diff --git a/lib/docusign_esign/api/templates_api.rb b/lib/docusign_esign/api/templates_api.rb index 8f3e46bc..c9a11d0f 100644 --- a/lib/docusign_esign/api/templates_api.rb +++ b/lib/docusign_esign/api/templates_api.rb @@ -1499,6 +1499,108 @@ def get_with_http_info(account_id, template_id, options = DocuSign_eSign::GetOpt return data, status_code, headers end + # Gets completion rate for the template + # + # @param account_id The external account number (int) or account ID Guid. + # @param template_id The ID of the template being accessed. + # @return [TemplateCompletionRateResponse] + def get_completion_rate_for_template(account_id, template_id) + data, _status_code, _headers = get_completion_rate_for_template_with_http_info(account_id, template_id) + return data + end + + # Gets completion rate for the template + # + # @param account_id The external account number (int) or account ID Guid. + # @param template_id The ID of the template being accessed. + # @return [Array<(TemplateCompletionRateResponse, Fixnum, Hash)>] TemplateCompletionRateResponse data, response status code and response headers + def get_completion_rate_for_template_with_http_info(account_id, template_id) + if @api_client.config.debugging + @api_client.config.logger.debug "Calling API: TemplatesApi.get_completion_rate_for_template ..." + end + # verify the required parameter 'account_id' is set + fail ArgumentError, "Missing the required parameter 'account_id' when calling TemplatesApi.get_completion_rate_for_template" if account_id.nil? + # verify the required parameter 'template_id' is set + fail ArgumentError, "Missing the required parameter 'template_id' when calling TemplatesApi.get_completion_rate_for_template" if template_id.nil? + # resource path + local_var_path = "/v2.1/accounts/{accountId}/templates/{templateId}/insights/completionRate".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'templateId' + '}', template_id.to_s) + + # query parameters + query_params = {} + + # header parameters + header_params = {} + # HTTP header 'Accept' (if needed) + header_params['Accept'] = @api_client.select_header_accept(['application/json']) + + # form parameters + form_params = {} + + # http body (model) + post_body = nil + auth_names = [] + data, status_code, headers = @api_client.call_api(:GET, local_var_path, + :header_params => header_params, + :query_params => query_params, + :form_params => form_params, + :body => post_body, + :auth_names => auth_names, + :return_type => 'TemplateCompletionRateResponse') + if @api_client.config.debugging + @api_client.config.logger.debug "API called: TemplatesApi#get_completion_rate_for_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + end + return data, status_code, headers + end + + # Gets completion rate for the user + # + # @param account_id The external account number (int) or account ID Guid. + # @return [UserCompletionRateResponse] + def get_completion_rate_for_template_owner(account_id) + data, _status_code, _headers = get_completion_rate_for_template_owner_with_http_info(account_id) + return data + end + + # Gets completion rate for the user + # + # @param account_id The external account number (int) or account ID Guid. + # @return [Array<(UserCompletionRateResponse, Fixnum, Hash)>] UserCompletionRateResponse data, response status code and response headers + def get_completion_rate_for_template_owner_with_http_info(account_id) + if @api_client.config.debugging + @api_client.config.logger.debug "Calling API: TemplatesApi.get_completion_rate_for_template_owner ..." + end + # verify the required parameter 'account_id' is set + fail ArgumentError, "Missing the required parameter 'account_id' when calling TemplatesApi.get_completion_rate_for_template_owner" if account_id.nil? + # resource path + local_var_path = "/v2.1/accounts/{accountId}/templates/insights/completionRate".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s) + + # query parameters + query_params = {} + + # header parameters + header_params = {} + # HTTP header 'Accept' (if needed) + header_params['Accept'] = @api_client.select_header_accept(['application/json']) + + # form parameters + form_params = {} + + # http body (model) + post_body = nil + auth_names = [] + data, status_code, headers = @api_client.call_api(:GET, local_var_path, + :header_params => header_params, + :query_params => query_params, + :form_params => form_params, + :body => post_body, + :auth_names => auth_names, + :return_type => 'UserCompletionRateResponse') + if @api_client.config.debugging + @api_client.config.logger.debug "API called: TemplatesApi#get_completion_rate_for_template_owner\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + end + return data, status_code, headers + end + # Gets PDF documents from a template. # Retrieves one or more PDF documents from the specified template. You can specify the ID of the document to retrieve or can specify `combined` to retrieve all documents in the template as one pdf. # @param account_id The external account number (int) or account ID Guid. @@ -3091,8 +3193,8 @@ def update_template_document_tabs_with_http_info(account_id, document_id, templa # @param account_id The external account number (int) or account ID Guid. # @param template_auto_match_list (optional parameter) # @return [TemplateAutoMatchList] - def update_templates(account_id, template_auto_match_list) - data, _status_code, _headers = update_templates_with_http_info(account_id, template_auto_match_list) + def update_templates_auto_match(account_id, template_auto_match_list) + data, _status_code, _headers = update_templates_auto_match_with_http_info(account_id, template_auto_match_list) return data end @@ -3101,12 +3203,12 @@ def update_templates(account_id, template_auto_match_list) # @param account_id The external account number (int) or account ID Guid. # @param template_auto_match_list (optional parameter) # @return [Array<(TemplateAutoMatchList, Fixnum, Hash)>] TemplateAutoMatchList data, response status code and response headers - def update_templates_with_http_info(account_id, template_auto_match_list) + def update_templates_auto_match_with_http_info(account_id, template_auto_match_list) if @api_client.config.debugging - @api_client.config.logger.debug "Calling API: TemplatesApi.update_templates ..." + @api_client.config.logger.debug "Calling API: TemplatesApi.update_templates_auto_match ..." end # verify the required parameter 'account_id' is set - fail ArgumentError, "Missing the required parameter 'account_id' when calling TemplatesApi.update_templates" if account_id.nil? + fail ArgumentError, "Missing the required parameter 'account_id' when calling TemplatesApi.update_templates_auto_match" if account_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/templates".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s) @@ -3132,7 +3234,7 @@ def update_templates_with_http_info(account_id, template_auto_match_list) :auth_names => auth_names, :return_type => 'TemplateAutoMatchList') if @api_client.config.debugging - @api_client.config.logger.debug "API called: TemplatesApi#update_templates\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + @api_client.config.logger.debug "API called: TemplatesApi#update_templates_auto_match\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end @@ -3142,8 +3244,8 @@ def update_templates_with_http_info(account_id, template_auto_match_list) # @param account_id The external account number (int) or account ID Guid. # @param template_auto_match_list (optional parameter) # @return [TemplateAutoMatchList] - def update_templates_auto_match(account_id, template_auto_match_list) - data, _status_code, _headers = update_templates_auto_match_with_http_info(account_id, template_auto_match_list) + def update_templates_auto_match_0(account_id, template_auto_match_list) + data, _status_code, _headers = update_templates_auto_match_0_with_http_info(account_id, template_auto_match_list) return data end @@ -3152,12 +3254,12 @@ def update_templates_auto_match(account_id, template_auto_match_list) # @param account_id The external account number (int) or account ID Guid. # @param template_auto_match_list (optional parameter) # @return [Array<(TemplateAutoMatchList, Fixnum, Hash)>] TemplateAutoMatchList data, response status code and response headers - def update_templates_auto_match_with_http_info(account_id, template_auto_match_list) + def update_templates_auto_match_0_with_http_info(account_id, template_auto_match_list) if @api_client.config.debugging - @api_client.config.logger.debug "Calling API: TemplatesApi.update_templates_auto_match ..." + @api_client.config.logger.debug "Calling API: TemplatesApi.update_templates_auto_match_0 ..." end # verify the required parameter 'account_id' is set - fail ArgumentError, "Missing the required parameter 'account_id' when calling TemplatesApi.update_templates_auto_match" if account_id.nil? + fail ArgumentError, "Missing the required parameter 'account_id' when calling TemplatesApi.update_templates_auto_match_0" if account_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/templates/auto_match".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s) @@ -3183,7 +3285,7 @@ def update_templates_auto_match_with_http_info(account_id, template_auto_match_l :auth_names => auth_names, :return_type => 'TemplateAutoMatchList') if @api_client.config.debugging - @api_client.config.logger.debug "API called: TemplatesApi#update_templates_auto_match\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + @api_client.config.logger.debug "API called: TemplatesApi#update_templates_auto_match_0\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end diff --git a/lib/docusign_esign/client/api_client.rb b/lib/docusign_esign/client/api_client.rb index c700fc4a..74a19d3c 100644 --- a/lib/docusign_esign/client/api_client.rb +++ b/lib/docusign_esign/client/api_client.rb @@ -35,7 +35,7 @@ class ApiClient # @option config [Configuration] Configuration for initializing the object, default to Configuration.default def initialize(config = Configuration.default) @config = config - @user_agent = "Swagger-Codegen/v2.1/7.0.0.rc1/ruby-#{RUBY_VERSION}p#{RUBY_PATCHLEVEL}" + @user_agent = "Swagger-Codegen/v2.1/7.0.0/ruby-#{RUBY_VERSION}p#{RUBY_PATCHLEVEL}" @default_headers = { 'Content-Type' => "application/json", 'User-Agent' => @user_agent diff --git a/lib/docusign_esign/models/account_settings_information.rb b/lib/docusign_esign/models/account_settings_information.rb index be7a5d3e..9036f0a1 100644 --- a/lib/docusign_esign/models/account_settings_information.rb +++ b/lib/docusign_esign/models/account_settings_information.rb @@ -194,6 +194,9 @@ class AccountSettingsInformation # attr_accessor :allow_connect_unified_payload_ui + # + attr_accessor :allow_connect_workspace_upload_request_ui + # attr_accessor :allow_consumer_disclosure_override @@ -1112,6 +1115,12 @@ class AccountSettingsInformation # attr_accessor :enable_agreement_desk_advanced_meta_data + # + attr_accessor :enable_ai_agents + + # + attr_accessor :enable_ai_agents_metadata + # attr_accessor :enable_ai_contract_review @@ -2663,6 +2672,7 @@ def self.attribute_map :'allow_connect_send_finish_later' => :'allowConnectSendFinishLater', :'allow_connect_send_finish_later_metadata' => :'allowConnectSendFinishLaterMetadata', :'allow_connect_unified_payload_ui' => :'allowConnectUnifiedPayloadUI', + :'allow_connect_workspace_upload_request_ui' => :'allowConnectWorkspaceUploadRequestUI', :'allow_consumer_disclosure_override' => :'allowConsumerDisclosureOverride', :'allow_consumer_disclosure_override_metadata' => :'allowConsumerDisclosureOverrideMetadata', :'allow_data_download' => :'allowDataDownload', @@ -2969,6 +2979,8 @@ def self.attribute_map :'enable_agreement_actions_for_e_sign_metadata' => :'enableAgreementActionsForESignMetadata', :'enable_agreement_desk_advanced' => :'enableAgreementDeskAdvanced', :'enable_agreement_desk_advanced_meta_data' => :'enableAgreementDeskAdvancedMetaData', + :'enable_ai_agents' => :'enableAIAgents', + :'enable_ai_agents_metadata' => :'enableAIAgentsMetadata', :'enable_ai_contract_review' => :'enableAIContractReview', :'enable_ai_contract_review_metadata' => :'enableAIContractReviewMetadata', :'enable_ai_sender_message' => :'enableAISenderMessage', @@ -3531,6 +3543,7 @@ def self.swagger_types :'allow_connect_send_finish_later' => :'String', :'allow_connect_send_finish_later_metadata' => :'SettingsMetadata', :'allow_connect_unified_payload_ui' => :'String', + :'allow_connect_workspace_upload_request_ui' => :'String', :'allow_consumer_disclosure_override' => :'String', :'allow_consumer_disclosure_override_metadata' => :'SettingsMetadata', :'allow_data_download' => :'String', @@ -3837,6 +3850,8 @@ def self.swagger_types :'enable_agreement_actions_for_e_sign_metadata' => :'SettingsMetadata', :'enable_agreement_desk_advanced' => :'String', :'enable_agreement_desk_advanced_meta_data' => :'SettingsMetadata', + :'enable_ai_agents' => :'String', + :'enable_ai_agents_metadata' => :'SettingsMetadata', :'enable_ai_contract_review' => :'String', :'enable_ai_contract_review_metadata' => :'SettingsMetadata', :'enable_ai_sender_message' => :'String', @@ -4586,6 +4601,10 @@ def initialize(attributes = {}) self.allow_connect_unified_payload_ui = attributes[:'allowConnectUnifiedPayloadUI'] end + if attributes.has_key?(:'allowConnectWorkspaceUploadRequestUI') + self.allow_connect_workspace_upload_request_ui = attributes[:'allowConnectWorkspaceUploadRequestUI'] + end + if attributes.has_key?(:'allowConsumerDisclosureOverride') self.allow_consumer_disclosure_override = attributes[:'allowConsumerDisclosureOverride'] end @@ -5810,6 +5829,14 @@ def initialize(attributes = {}) self.enable_agreement_desk_advanced_meta_data = attributes[:'enableAgreementDeskAdvancedMetaData'] end + if attributes.has_key?(:'enableAIAgents') + self.enable_ai_agents = attributes[:'enableAIAgents'] + end + + if attributes.has_key?(:'enableAIAgentsMetadata') + self.enable_ai_agents_metadata = attributes[:'enableAIAgentsMetadata'] + end + if attributes.has_key?(:'enableAIContractReview') self.enable_ai_contract_review = attributes[:'enableAIContractReview'] end @@ -7881,6 +7908,7 @@ def ==(o) allow_connect_send_finish_later == o.allow_connect_send_finish_later && allow_connect_send_finish_later_metadata == o.allow_connect_send_finish_later_metadata && allow_connect_unified_payload_ui == o.allow_connect_unified_payload_ui && + allow_connect_workspace_upload_request_ui == o.allow_connect_workspace_upload_request_ui && allow_consumer_disclosure_override == o.allow_consumer_disclosure_override && allow_consumer_disclosure_override_metadata == o.allow_consumer_disclosure_override_metadata && allow_data_download == o.allow_data_download && @@ -8187,6 +8215,8 @@ def ==(o) enable_agreement_actions_for_e_sign_metadata == o.enable_agreement_actions_for_e_sign_metadata && enable_agreement_desk_advanced == o.enable_agreement_desk_advanced && enable_agreement_desk_advanced_meta_data == o.enable_agreement_desk_advanced_meta_data && + enable_ai_agents == o.enable_ai_agents && + enable_ai_agents_metadata == o.enable_ai_agents_metadata && enable_ai_contract_review == o.enable_ai_contract_review && enable_ai_contract_review_metadata == o.enable_ai_contract_review_metadata && enable_ai_sender_message == o.enable_ai_sender_message && @@ -8694,7 +8724,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Fixnum] Hash code def hash - [access_code_format, account_date_time_format, account_date_time_format_metadata, account_default_language, account_default_language_metadata, account_name, account_name_metadata, account_notification, account_ui_settings, additional_settings, adopt_sig_config, adopt_sig_config_metadata, advanced_correct, advanced_correct_metadata, advanced_search_enable_tab_field, advanced_search_enable_tab_field_metadata, advanced_search_enable_template_id_field, advanced_search_enable_template_id_field_metadata, advanced_search_enable_template_name_field, advanced_search_enable_template_name_field_metadata, ai_assisted_web_form_creation_level, ai_assisted_web_form_creation_level_metadata, allow_access_code_format, allow_access_code_format_metadata, allow_account_management_granular, allow_account_management_granular_metadata, allow_account_member_name_change, allow_account_member_name_change_metadata, allow_ace, allow_ace_metadata, allow_advanced_recipient_routing_conditional, allow_advanced_recipient_routing_conditional_metadata, allow_agent_name_email_edit, allow_agent_name_email_edit_metadata, allow_agreement_actions, allow_agreement_actions_metadata, allow_agreement_orchestrations, allow_agreement_orchestrations_metadata, allow_auto_nav_settings, allow_auto_nav_settings_metadata, allow_auto_tagging, allow_auto_tagging_metadata, allow_bulk_send, allow_bulk_send_metadata, allow_byoidv, allow_byoidv_metadata, allow_cd_withdraw, allow_cd_withdraw_metadata, allow_connect_agreement_ui, allow_connect_agreement_ui_metadata, allow_connect_authoritative_copy_ready_event_ui, allow_connect_envelope_reminder_sent_event_ui, allow_connect_envelope_removed_event, allow_connect_extension_ui, allow_connect_http_listener_configs, allow_connect_identity_verification_ui, allow_connect_o_auth_ui, allow_connect_send_finish_later, allow_connect_send_finish_later_metadata, allow_connect_unified_payload_ui, allow_consumer_disclosure_override, allow_consumer_disclosure_override_metadata, allow_data_download, allow_data_download_metadata, allow_delayed_routing, allow_delayed_routing_metadata, allow_delegated_signing, allow_delegated_signing_metadata, allow_doc_gen_documents, allow_doc_gen_documents_metadata, allow_document_disclosures, allow_document_disclosures_metadata, allow_documents_on_signed_envelopes, allow_documents_on_signed_envelopes_metadata, allow_document_visibility, allow_document_visibility_metadata, allow_editing_envelopes_on_behalf_of_others, allow_editing_envelopes_on_behalf_of_others_metadata, allow_e_hanko_stamps, allow_e_hanko_stamps_metadata, allow_e_note_e_original, allow_e_note_e_original_metadata, allow_envelope_correct, allow_envelope_correct_metadata, allow_envelope_custody_transfer, allow_envelope_custody_transfer_metadata, allow_envelope_custom_fields, allow_envelope_custom_fields_metadata, allow_envelope_publish_reporting, allow_envelope_publish_reporting_metadata, allow_envelope_reporting, allow_envelope_reporting_metadata, allow_expression, allow_expression_metadata, allow_express_signer_certificate, allow_express_signer_certificate_metadata, allow_extended_sending_resource_file, allow_extended_sending_resource_file_metadata, allow_external_linked_accounts, allow_external_linked_accounts_metadata, allow_external_signature_pad, allow_external_signature_pad_metadata, allow_fed_ramp_idv_level1, allow_fed_ramp_idv_level1_metadata, allow_fed_ramp_idv_level2, allow_fed_ramp_idv_level2_metadata, allow_idv_for_eu_qualified_signatures, allow_idv_for_eu_qualified_signatures_metadata, allow_idv_level1, allow_idv_level1_metadata, allow_idv_level1_trial, allow_idv_level1_trial_metadata, allow_idv_level2, allow_idv_level2_metadata, allow_idv_level3, allow_idv_level3_metadata, allow_idv_platform, allow_idv_platform_metadata, allow_idv_risk_assessment, allow_idv_risk_assessment_metadata, allow_in_person, allow_in_person_electronic_notary, allow_in_person_electronic_notary_metadata, allow_in_person_metadata, allow_managed_stamps, allow_managed_stamps_metadata, allow_managing_envelopes_on_behalf_of_others, allow_managing_envelopes_on_behalf_of_others_metadata, allow_markup, allow_markup_metadata, allow_member_time_zone, allow_member_time_zone_metadata, allow_merge_fields, allow_merge_fields_metadata, allow_multiple_brand_profiles, allow_multiple_brand_profiles_metadata, allow_multiple_signer_attachments, allow_multiple_signer_attachments_metadata, allow_non_us_phone_auth, allow_non_us_phone_auth_metadata, allow_ocr_of_envelope_documents, allow_ocr_of_envelope_documents_metadata, allow_offline_signing, allow_offline_signing_metadata, allow_only_standalone_web_forms, allow_only_standalone_web_forms_metadata, allow_open_trust_signer_certificate, allow_open_trust_signer_certificate_metadata, allow_organization_branding, allow_organization_branding_metadata, allow_organization_docusign_monitor, allow_organization_docusign_monitor_free, allow_organization_docusign_monitor_free_metadata, allow_organization_docusign_monitor_metadata, allow_organization_domain_user_management, allow_organization_domain_user_management_metadata, allow_organizations, allow_organizations_metadata, allow_organization_sso_management, allow_organization_sso_management_metadata, allow_organization_to_use_in_person_electronic_notary, allow_organization_to_use_in_person_electronic_notary_metadata, allow_organization_to_use_remote_notary, allow_organization_to_use_remote_notary_metadata, allow_organization_to_use_third_party_electronic_notary, allow_organization_to_use_third_party_electronic_notary_metadata, allow_participant_recipient_type, allow_participant_recipient_type_metadata, allow_payment_processing, allow_payment_processing_metadata, allow_pending_destination_url_edition, allow_pending_destination_url_edition_metadata, allow_performance_analytics, allow_performance_analytics_metadata, allow_phone_authentication, allow_phone_authentication_metadata, allow_phone_auth_override, allow_phone_auth_override_metadata, allow_private_signing_groups, allow_private_signing_groups_metadata, allow_recipient_connect, allow_recipient_connect_metadata, allow_reminders, allow_reminders_metadata, allow_remote_notary, allow_remote_notary_metadata, allow_resource_file_branding, allow_resource_file_branding_metadata, allow_safe_bio_pharma_signer_certificate, allow_safe_bio_pharma_signer_certificate_metadata, allow_scheduled_sending, allow_scheduled_sending_metadata, allow_security_appliance, allow_security_appliance_metadata, allow_sending_envelopes_on_behalf_of_others, allow_sending_envelopes_on_behalf_of_others_metadata, allow_send_to_certified_delivery, allow_send_to_certified_delivery_metadata, allow_send_to_intermediary, allow_send_to_intermediary_metadata, allow_server_templates, allow_server_templates_metadata, allow_set_embedded_recipient_start_url, allow_set_embedded_recipient_start_url_metadata, allow_shared_tabs, allow_shared_tabs_metadata, allow_signature_stamps, allow_signature_stamps_metadata, allow_sign_document_from_home_page, allow_sign_document_from_home_page_metadata, allow_signer_reassign, allow_signer_reassign_metadata, allow_signer_reassign_override, allow_signer_reassign_override_metadata, allow_signing_extensions, allow_signing_extensions_metadata, allow_signing_groups, allow_signing_groups_metadata, allow_signing_insights, allow_signing_insights_metadata, allow_signing_radio_deselect, allow_signing_radio_deselect_metadata, allow_sign_now, allow_sign_now_metadata, allow_sms_delivery, allow_sms_delivery_metadata, allow_social_id_login, allow_social_id_login_metadata, allow_supplemental_documents, allow_supplemental_documents_metadata, allow_third_party_electronic_notary, allow_third_party_electronic_notary_metadata, allow_transactions_workspace, allow_transactions_workspace_metadata, allow_transactions_workspace_original, allow_transactions_workspace_original_metadata, allow_users_to_access_directory, allow_users_to_access_directory_metadata, allow_value_insights, allow_value_insights_metadata, allow_web_forms, allow_web_forms_metadata, allow_whats_app_delivery, allow_whats_app_delivery_metadata, anchor_population_scope, anchor_population_scope_metadata, anchor_tag_versioned_placement_enabled, anchor_tag_versioned_placement_metadata_enabled, attach_completed_envelope, attach_completed_envelope_metadata, authentication_check, authentication_check_metadata, auto_nav_rule, auto_nav_rule_metadata, auto_provision_signer_account, auto_provision_signer_account_metadata, bcc_email_archive, bcc_email_archive_metadata, beta_switch_configuration, beta_switch_configuration_metadata, billing_address, billing_address_metadata, bulk_send, bulk_send_action_resend_limit, bulk_send_max_copies_in_batch, bulk_send_max_unprocessed_envelopes_count, bulk_send_metadata, can_self_brand_send, can_self_brand_send_metadata, can_self_brand_sign, can_self_brand_sign_metadata, can_use_salesforce_o_auth, can_use_salesforce_o_auth_metadata, capture_voice_recording, capture_voice_recording_metadata, cfr21_simplified_signing_enabled, cfr21_simplified_signing_enabled_metadata, cfr_use_wide_image, cfr_use_wide_image_metadata, check_for_multiple_admins_on_account, check_for_multiple_admins_on_account_metadata, chrome_signature_enabled, chrome_signature_enabled_metadata, cloud_ready, comment_email_show_message_text, comment_email_show_message_text_metadata, comments_allow_envelope_override, comments_allow_envelope_override_metadata, conditional_fields_enabled, conditional_fields_enabled_metadata, consumer_disclosure_frequency, consumer_disclosure_frequency_metadata, convert_pdf_fields, convert_pdf_fields_metadata, custom_extraction_plan_levels, custom_extraction_plan_levels_metadata, data_population_scope, data_population_scope_metadata, default_signing_responsive_view, default_signing_responsive_view_metadata, default_signing_responsive_view_use_grade, default_signing_responsive_view_use_grade_metadata, default_to_advanced_envelopes_filter_form, default_to_advanced_envelopes_filter_form_metadata, disable_auto_template_matching, disable_auto_template_matching_metadata, disable_legacy_kba, disable_legacy_kba_metadata, disable_legacy_shared_envelopes, disable_legacy_shared_envelopes_metadata, disable_mobile_app, disable_mobile_app_metadata, disable_mobile_push_notifications, disable_mobile_push_notifications_metadata, disable_mobile_sending, disable_mobile_sending_metadata, disable_multiple_sessions, disable_multiple_sessions_metadata, disable_purge_notifications_for_sender_metadata, disable_signer_cert_view, disable_signer_cert_view_metadata, disable_signer_history_view, disable_signer_history_view_metadata, disable_style_signature, disable_style_signature_metadata, disable_upload_signature, disable_upload_signature_metadata, disable_user_sharing, disable_user_sharing_metadata, display_beta_switch, display_beta_switch_metadata, document_conversion_restrictions, document_conversion_restrictions_metadata, document_retention, document_retention_metadata, document_retention_purge_tabs, document_visibility, document_visibility_metadata, draft_envelope_retention, draft_envelope_retention_metadata, dss_sign_28411_enable_leave_page_prompt_radmin_option, dss_sign_29182_slide_up_bar_radmin_option, email_template_version, email_template_version_metadata, enable_access_code_generator, enable_access_code_generator_metadata, enable_account_wide_search, enable_account_wide_search_metadata, enable_additional_advanced_web_forms_features, enable_additional_advanced_web_forms_features_metadata, enable_adm_healthcare, enable_adm_healthcare_metadata, enable_advanced_envelopes_search, enable_advanced_envelopes_search_metadata, enable_advanced_payments, enable_advanced_payments_metadata, enable_advanced_power_forms, enable_advanced_power_forms_metadata, enable_advanced_search, enable_advanced_search_metadata, enable_agreement_actions_for_clm, enable_agreement_actions_for_clm_metadata, enable_agreement_actions_for_e_sign, enable_agreement_actions_for_e_sign_metadata, enable_agreement_desk_advanced, enable_agreement_desk_advanced_meta_data, enable_ai_contract_review, enable_ai_contract_review_metadata, enable_ai_sender_message, enable_ai_sender_message_metadata, enable_ai_suggested_fields, enable_ai_suggested_fields_auto_place, enable_ai_suggested_fields_auto_place_metadata, enable_ai_suggested_fields_metadata, enable_auto_nav, enable_auto_nav_metadata, enable_batch_update_envelope_types, enable_batch_update_envelope_types_metadata, enable_bcc_dummy_link, enable_bcc_dummy_link_metadata, enable_cac_piv_signature_group, enable_cac_piv_signature_group_metadata, enable_calculated_fields, enable_calculated_fields_metadata, enable_cfr_rapid_signing_embedded_auth, enable_cfr_rapid_signing_embedded_auth_metadata, enable_click_plus, enable_click_plus_conditional_content, enable_click_plus_conditional_content_meta_data, enable_click_plus_custom_fields, enable_click_plus_custom_fields_meta_data, enable_click_plus_custom_style, enable_click_plus_custom_style_meta_data, enable_click_plus_dynamic_content, enable_click_plus_dynamic_content_meta_data, enable_click_plus_meta_data, enable_clickwraps, enable_clickwraps_metadata, enable_combined_pdf_download_for_sbs, enable_comments_history_download_in_signing, enable_comments_history_download_in_signing_metadata, enable_contact_suggestions, enable_contact_suggestions_metadata, enable_content_search, enable_content_search_metadata, enable_coupa_core_extension, enable_coupa_core_extension_metadata, enable_coupa_iam_connector, enable_coupa_iam_connector_metadata, enable_custom_data_verification_extensions, enable_custom_data_verification_extensions_metadata, enable_customer_satisfaction_metric_tracking, enable_customer_satisfaction_metric_tracking_metadata, enable_data_verification_extensions, enable_data_verification_extensions_metadata, enable_document_template_library, enable_document_template_library_metadata, enable_d_sig_eu_advanced_pens, enable_d_sig_eu_advanced_pens_metadata, enable_d_sig_express_pens, enable_d_sig_express_pens_metadata, enable_d_sig_id_check_for_aes_pens, enable_d_sig_id_check_for_aes_pens_metadata, enable_d_sig_id_check_in_person_for_qes_pens, enable_d_sig_id_check_in_person_for_qes_pens_metadata, enable_d_sig_id_check_remote_for_qes_pens, enable_d_sig_id_check_remote_for_qes_pens_metadata, enable_d_sig_id_verification_pens, enable_d_sig_id_verification_pens_metadata, enable_d_sig_id_verification_premier_pens, enable_d_sig_id_verification_premier_pens_metadata, enable_d_sig_pen_group_eu_qes, enable_d_sig_pen_group_eu_qes_metadata, enable_d_sig_plg_eu_qes_pens, enable_d_sig_plg_eu_qes_pens_metadata, enable_ds_pro, enable_ds_pro_metadata, enable_enforce_tls_emails_setting_metadata, enable_envelope_stamping_by_account_admin, enable_envelope_stamping_by_account_admin_metadata, enable_envelope_stamping_by_ds_admin, enable_envelope_stamping_by_ds_admin_metadata, enable_e_sign_api_hourly_limit_management, enable_e_sign_api_hourly_limit_management_metadata, enable_esign_communities, enable_esign_communities_metadata, enable_esign_task_list, enable_esign_task_list_metadata, enable_generation_with3_p_integration, enable_generation_with3_p_integration_meta_data, enable_greenhouse_app, enable_greenhouse_app_metadata, enable_i9_on_demand, enable_i9_on_demand_metadata, enable_iam_clause_library, enable_iam_clause_library_metadata, enable_ia_mfor_x_embedded_ux, enable_ia_mfor_x_embedded_ux_metadata, enable_id_fx_accountless_sms_auth_for_part11, enable_id_fx_accountless_sms_auth_for_part11_metadata, enable_id_fx_intuit_kba, enable_id_fx_intuit_kba_metadata, enable_id_fx_phone_authentication, enable_id_fx_phone_authentication_metadata, enable_idfx_phone_auth_signature_auth_status, enable_idfx_phone_auth_signature_auth_status_metadata, enable_inbox_browse_views_powered_by_elastic_search, enable_inbox_browse_views_powered_by_elastic_search_metadata, enable_inbox_relevance_sort, enable_inbox_relevance_sort_metadata, enable_in_browser_editor, enable_in_browser_editor_metadata, enable_key_terms_suggestions_by_document_type, enable_key_terms_suggestions_by_document_type_metadata, enable_large_file_support, enable_large_file_support_metadata, enable_legacy_shared_envelopes, enable_legacy_shared_envelopes_metadata, enable_license_management, enable_license_management_metadata, enable_microsoft_dynamics365_extension, enable_microsoft_dynamics365_extension_metadata, enable_multi_user_repository_features, enable_multi_user_repository_features_metadata, enable_navigator_api_data_in, enable_navigator_api_data_in_metadata, enable_navigator_api_data_out, enable_navigator_api_data_out_metadata, enable_navigator_api_utilities, enable_navigator_api_utilities_metadata, enable_navigator_for_hr, enable_navigator_for_hr_metadata, enable_navigator_hierarchy_ai, enable_navigator_hierarchy_ai_metadata, enable_navigator_partial_ingestion, enable_navigator_partial_ingestion_metadata, enable_navigator_trial, enable_navigator_trial_metadata, enable_notary_on_demand_witness, enable_notary_on_demand_witness_metadata, enable_obligation_management, enable_obligation_management_metadata, enable_participant_recipient_setting_metadata, enable_payment_processing, enable_payment_processing_metadata, enable_pdfa_conversion, enable_pdfa_conversion_metadata, enable_power_form, enable_power_form_direct, enable_power_form_direct_metadata, enable_power_form_metadata, enable_premium_data_verification_extensions, enable_premium_data_verification_extensions_metadata, enable_recipient_domain_validation, enable_recipient_domain_validation_metadata, enable_recipient_may_provide_phone_number, enable_recipient_may_provide_phone_number_metadata, enable_report_links, enable_report_links_metadata, enable_require_sign_on_paper, enable_require_sign_on_paper_metadata, enable_reserved_domain, enable_reserved_domain_metadata, enable_responsive_signing, enable_responsive_signing_metadata, enable_reviewer_events_setting, enable_reviewer_events_setting_metadata, enable_sap_ariba_extension, enable_sap_ariba_extension_meta_data, enable_scheduled_release, enable_scheduled_release_metadata, enable_search_service_azure_uri, enable_search_service_azure_uri_metadata, enable_search_site_specific_api, enable_search_site_specific_api_metadata, enable_sending_tags_font_settings, enable_sending_tags_font_settings_metadata, enable_send_to_agent, enable_send_to_agent_metadata, enable_send_to_intermediary, enable_send_to_intermediary_metadata, enable_send_to_manage, enable_send_to_manage_metadata, enable_sequential_signing_api, enable_sequential_signing_api_metadata, enable_sequential_signing_ui, enable_sequential_signing_ui_metadata, enable_signer_attachments, enable_signer_attachments_metadata, enable_signing_ai_features_plan, enable_signing_ai_features_plan_metadata, enable_signing_extension_comments, enable_signing_extension_comments_metadata, enable_signing_extension_conversations, enable_signing_extension_conversations_metadata, enable_signing_group_continue_page_setting, enable_signing_group_continue_page_setting_metadata, enable_signing_order_settings_for_account, enable_signing_order_settings_for_account_metadata, enable_sign_on_paper, enable_sign_on_paper_metadata, enable_sign_on_paper_override, enable_sign_on_paper_override_metadata, enable_sign_with_notary, enable_sign_with_notary_metadata, enable_smart_contracts, enable_smart_contracts_metadata, enable_sms_authentication, enable_sms_authentication_metadata, enable_sms_delivery_additional_notification, enable_sms_delivery_additional_notification_metadata, enable_sms_delivery_primary, enable_social_id_login, enable_social_id_login_metadata, enable_strike_through, enable_strike_through_metadata, enable_tickets, enable_tickets_meta_data, enable_transaction_point, enable_transaction_point_metadata, enable_unified_repository, enable_unified_repository_metadata, enable_vaulting, enable_vaulting_metadata, enable_web_forms_runtime_ap_is, enable_web_forms_runtime_ap_is_metadata, enable_web_forms_separate_user_permissions, enable_web_forms_separate_user_permissions_metadata, enable_witnessing, enable_witnessing_metadata, enable_workday_financials_extension, enable_workday_financials_extension_meta_data, enable_workday_hr_app, enable_workday_hr_app_metadata, enforce_template_name_uniqueness, enforce_template_name_uniqueness_metadata, enforce_tls_emails, enforce_tls_emails_metadata, envelope_integration_allowed, envelope_integration_allowed_metadata, envelope_integration_enabled, envelope_integration_enabled_metadata, envelope_limits_total_document_size_allowed_in_mb, envelope_limits_total_document_size_allowed_in_mb_enabled, envelope_limits_total_document_size_allowed_in_mb_enabled_metadata, envelope_limits_total_document_size_allowed_in_mb_metadata, envelope_search_mode, envelope_search_mode_metadata, envelope_stamping_default_value, envelope_stamping_default_value_metadata, exit_prompt, exit_prompt_metadata, express_send, express_send_allow_tabs, express_send_allow_tabs_metadata, express_send_metadata, external_document_sources, external_signature_pad_type, external_signature_pad_type_metadata, fax_out_enabled, fax_out_enabled_metadata, finish_reminder, finish_reminder_metadata, forbid_adding_user_stamps, forbid_adding_user_stamps_metadata, guided_forms_html_allowed, guided_forms_html_allowed_metadata, guided_forms_html_conversion_policy, guided_forms_html_conversion_policy_metadata, has_recipient_connect_claimed_domain, hide_account_address_in_co_c, hide_account_address_in_co_c_metadata, hide_pricing, hide_pricing_metadata, id_check_configurations, id_check_expire, id_check_expire_days, id_check_expire_days_metadata, id_check_expire_metadata, id_check_expire_minutes, id_check_expire_minutes_metadata, id_check_required, id_check_required_metadata, identity_verification, identity_verification_metadata, idfx_kba_authentication_override, idfx_kba_authentication_override_metadata, idfx_phone_authentication_override, idfx_phone_authentication_override_metadata, ignore_error_if_anchor_tab_not_found, ignore_error_if_anchor_tab_not_found_metadata_enabled, in_person_id_check_question, in_person_id_check_question_metadata, in_person_signing_enabled, in_person_signing_enabled_metadata, in_session_enabled, in_session_enabled_metadata, in_session_suppress_emails, in_session_suppress_emails_metadata, is_connect_document_fields_enabled, isv_embed, isv_embed_meta_data, isv_oem_embed, isv_oem_embed_meta_data, linked_external_primary_accounts, maestro_plan_levels, maestro_plan_levels_metadata, maximum_signing_groups, maximum_signing_groups_metadata, maximum_users_per_signing_group, maximum_users_per_signing_group_metadata, max_number_of_custom_stamps, merge_mixed_mode_results, merge_mixed_mode_results_metadata, mobile_session_timeout, mobile_session_timeout_metadata, number_of_active_custom_stamps, opt_in_mobile_signing_v02, opt_in_mobile_signing_v02_metadata, opt_in_universal_signatures, opt_out_auto_nav_text_and_tab_color_updates, opt_out_auto_nav_text_and_tab_color_updates_metadata, opt_out_new_platform_seal, opt_out_new_platform_seal_platform_metadata, original_account_site, participant_copy_opt_out, participant_copy_opt_out_metadata, pdf_max_chunked_upload_part_size, pdf_max_chunked_upload_part_size_metadata, pdf_max_chunked_upload_total_size, pdf_max_chunked_upload_total_size_metadata, pdf_max_individual_upload_size, pdf_max_individual_upload_size_metadata, phone_auth_recipient_may_provide_phone_number, phone_auth_recipient_may_provide_phone_number_metadata, pki_sign_downloaded_pdf_docs, pki_sign_downloaded_pdf_docs_metadata, read_only_mode, read_only_mode_metadata, recipients_can_sign_offline, recipients_can_sign_offline_metadata, recipient_signing_auto_navigation_control, recipient_signing_auto_navigation_control_metadata, recycle_bin_envelope_retention, recycle_bin_envelope_retention_metadata, require21_cf_rpt11_compliance, require21_cf_rpt11_compliance_metadata, require_decline_reason, require_decline_reason_metadata, require_external_user_management, require_external_user_management_metadata, require_signer_certificate_type, require_signer_certificate_type_metadata, rsa_verid_account_name, rsa_verid_password, rsa_verid_ruleset, rsa_verid_user_id, self_signed_recipient_email_document, self_signed_recipient_email_document_metadata, self_signed_recipient_email_document_user_override, self_signed_recipient_email_document_user_override_metadata, sender_can_sign_in_each_location, sender_can_sign_in_each_location_metadata, sender_must_authenticate_signing, sender_must_authenticate_signing_metadata, sending_tags_font_color, sending_tags_font_color_metadata, sending_tags_font_name, sending_tags_font_name_metadata, sending_tags_font_size, sending_tags_font_size_metadata, send_lockout_recipient_notification, send_lockout_recipient_notification_metadata, send_to_certified_delivery_enabled, send_to_certified_delivery_enabled_metadata, session_timeout, session_timeout_metadata, set_recip_email_lang, set_recip_email_lang_metadata, set_recip_sign_lang, set_recip_sign_lang_metadata, shared_template_folders, shared_template_folders_metadata, show_complete_dialog_in_embedded_session, show_complete_dialog_in_embedded_session_metadata, show_conditional_routing_on_send, show_conditional_routing_on_send_metadata, show_initial_conditional_fields, show_initial_conditional_fields_metadata, show_localized_watermarks, show_localized_watermarks_metadata, show_masked_fields_when_downloading_document_as_sender, show_masked_fields_when_downloading_document_as_sender_metadata, show_tutorials, show_tutorials_metadata, signature_providers, signature_providers_metadata, sign_date_format, sign_date_format_metadata, sign_date_time_account_language_override, sign_date_time_account_language_override_metadata, sign_date_time_account_timezone_override, sign_date_time_account_timezone_override_metadata, signer_attach_certificate_to_envelope_pdf, signer_attach_certificate_to_envelope_pdf_metadata, signer_attach_concat, signer_attach_concat_metadata, signer_can_create_account, signer_can_create_account_metadata, signer_can_sign_on_mobile, signer_can_sign_on_mobile_metadata, signer_in_session_use_envelope_complete_email, signer_in_session_use_envelope_complete_email_metadata, signer_login_requirements, signer_login_requirements_metadata, signer_must_have_account, signer_must_have_account_metadata, signer_must_login_to_sign, signer_must_login_to_sign_metadata, signer_show_secure_field_initial_values, signer_show_secure_field_initial_values_metadata, signing_session_timeout, signing_session_timeout_metadata, signing_ui_version, signing_ui_version_metadata, sign_time_format, sign_time_format_metadata, sign_time_show_am_pm, sign_time_show_am_pm_metadata, simplified_sending_enabled, simplified_sending_enabled_metadata, single_sign_on_enabled, single_sign_on_enabled_metadata, skip_auth_completed_envelopes, skip_auth_completed_envelopes_metadata, social_id_recip_auth, social_id_recip_auth_metadata, specify_document_visibility, specify_document_visibility_metadata, start_in_advanced_correct, start_in_advanced_correct_metadata, supplemental_documents_must_accept, supplemental_documents_must_accept_metadata, supplemental_documents_must_read, supplemental_documents_must_read_metadata, supplemental_documents_must_view, supplemental_documents_must_view_metadata, suppress_certificate_enforcement, suppress_certificate_enforcement_metadata, tab_account_settings, timezone_offset_api, timezone_offset_api_metadata, timezone_offset_ui, timezone_offset_ui_metadata, universal_signature_opt_in, universal_signature_skip_platform_signature, universal_signature_skip_platform_signature_metadata, use_account_level_email, use_account_level_email_metadata, use_consumer_disclosure, use_consumer_disclosure_metadata, use_consumer_disclosure_within_account, use_consumer_disclosure_within_account_metadata, use_derived_keys, use_derived_keys_metadata, use_docu_sign_express_signer_certificate, use_docu_sign_express_signer_certificate_metadata, use_envelope_search_mixed_mode, use_envelope_search_mixed_mode_metadata, use_multi_app_groups_data, use_multi_app_groups_data_metadata, use_new_blob_for_pdf, use_new_blob_for_pdf_metadata, use_new_envelope_search, use_new_envelope_search_metadata, use_new_envelope_search_only_when_searching_after_date, use_new_envelope_search_only_when_searching_after_date_metadata, use_new_envelope_search_only_with_search_term, use_new_envelope_search_only_with_search_term_metadata, use_safe_signer_certificates, use_safe_signer_certificates_metadata, uses_api, uses_api_metadata, use_signature_provider_platform, use_signature_provider_platform_metadata, use_smart_contracts_v1, validations_allowed, validations_allowed_metadata, validations_brand, validations_brand_metadata, validations_cadence, validations_cadence_metadata, validations_enabled, validations_enabled_metadata, validations_report, validations_report_metadata, water_mark_enabled, water_mark_enabled_metadata, write_reminder_to_envelope_history, write_reminder_to_envelope_history_metadata, wurfl_min_allowable_screen_size, wurfl_min_allowable_screen_size_metadata].hash + [access_code_format, account_date_time_format, account_date_time_format_metadata, account_default_language, account_default_language_metadata, account_name, account_name_metadata, account_notification, account_ui_settings, additional_settings, adopt_sig_config, adopt_sig_config_metadata, advanced_correct, advanced_correct_metadata, advanced_search_enable_tab_field, advanced_search_enable_tab_field_metadata, advanced_search_enable_template_id_field, advanced_search_enable_template_id_field_metadata, advanced_search_enable_template_name_field, advanced_search_enable_template_name_field_metadata, ai_assisted_web_form_creation_level, ai_assisted_web_form_creation_level_metadata, allow_access_code_format, allow_access_code_format_metadata, allow_account_management_granular, allow_account_management_granular_metadata, allow_account_member_name_change, allow_account_member_name_change_metadata, allow_ace, allow_ace_metadata, allow_advanced_recipient_routing_conditional, allow_advanced_recipient_routing_conditional_metadata, allow_agent_name_email_edit, allow_agent_name_email_edit_metadata, allow_agreement_actions, allow_agreement_actions_metadata, allow_agreement_orchestrations, allow_agreement_orchestrations_metadata, allow_auto_nav_settings, allow_auto_nav_settings_metadata, allow_auto_tagging, allow_auto_tagging_metadata, allow_bulk_send, allow_bulk_send_metadata, allow_byoidv, allow_byoidv_metadata, allow_cd_withdraw, allow_cd_withdraw_metadata, allow_connect_agreement_ui, allow_connect_agreement_ui_metadata, allow_connect_authoritative_copy_ready_event_ui, allow_connect_envelope_reminder_sent_event_ui, allow_connect_envelope_removed_event, allow_connect_extension_ui, allow_connect_http_listener_configs, allow_connect_identity_verification_ui, allow_connect_o_auth_ui, allow_connect_send_finish_later, allow_connect_send_finish_later_metadata, allow_connect_unified_payload_ui, allow_connect_workspace_upload_request_ui, allow_consumer_disclosure_override, allow_consumer_disclosure_override_metadata, allow_data_download, allow_data_download_metadata, allow_delayed_routing, allow_delayed_routing_metadata, allow_delegated_signing, allow_delegated_signing_metadata, allow_doc_gen_documents, allow_doc_gen_documents_metadata, allow_document_disclosures, allow_document_disclosures_metadata, allow_documents_on_signed_envelopes, allow_documents_on_signed_envelopes_metadata, allow_document_visibility, allow_document_visibility_metadata, allow_editing_envelopes_on_behalf_of_others, allow_editing_envelopes_on_behalf_of_others_metadata, allow_e_hanko_stamps, allow_e_hanko_stamps_metadata, allow_e_note_e_original, allow_e_note_e_original_metadata, allow_envelope_correct, allow_envelope_correct_metadata, allow_envelope_custody_transfer, allow_envelope_custody_transfer_metadata, allow_envelope_custom_fields, allow_envelope_custom_fields_metadata, allow_envelope_publish_reporting, allow_envelope_publish_reporting_metadata, allow_envelope_reporting, allow_envelope_reporting_metadata, allow_expression, allow_expression_metadata, allow_express_signer_certificate, allow_express_signer_certificate_metadata, allow_extended_sending_resource_file, allow_extended_sending_resource_file_metadata, allow_external_linked_accounts, allow_external_linked_accounts_metadata, allow_external_signature_pad, allow_external_signature_pad_metadata, allow_fed_ramp_idv_level1, allow_fed_ramp_idv_level1_metadata, allow_fed_ramp_idv_level2, allow_fed_ramp_idv_level2_metadata, allow_idv_for_eu_qualified_signatures, allow_idv_for_eu_qualified_signatures_metadata, allow_idv_level1, allow_idv_level1_metadata, allow_idv_level1_trial, allow_idv_level1_trial_metadata, allow_idv_level2, allow_idv_level2_metadata, allow_idv_level3, allow_idv_level3_metadata, allow_idv_platform, allow_idv_platform_metadata, allow_idv_risk_assessment, allow_idv_risk_assessment_metadata, allow_in_person, allow_in_person_electronic_notary, allow_in_person_electronic_notary_metadata, allow_in_person_metadata, allow_managed_stamps, allow_managed_stamps_metadata, allow_managing_envelopes_on_behalf_of_others, allow_managing_envelopes_on_behalf_of_others_metadata, allow_markup, allow_markup_metadata, allow_member_time_zone, allow_member_time_zone_metadata, allow_merge_fields, allow_merge_fields_metadata, allow_multiple_brand_profiles, allow_multiple_brand_profiles_metadata, allow_multiple_signer_attachments, allow_multiple_signer_attachments_metadata, allow_non_us_phone_auth, allow_non_us_phone_auth_metadata, allow_ocr_of_envelope_documents, allow_ocr_of_envelope_documents_metadata, allow_offline_signing, allow_offline_signing_metadata, allow_only_standalone_web_forms, allow_only_standalone_web_forms_metadata, allow_open_trust_signer_certificate, allow_open_trust_signer_certificate_metadata, allow_organization_branding, allow_organization_branding_metadata, allow_organization_docusign_monitor, allow_organization_docusign_monitor_free, allow_organization_docusign_monitor_free_metadata, allow_organization_docusign_monitor_metadata, allow_organization_domain_user_management, allow_organization_domain_user_management_metadata, allow_organizations, allow_organizations_metadata, allow_organization_sso_management, allow_organization_sso_management_metadata, allow_organization_to_use_in_person_electronic_notary, allow_organization_to_use_in_person_electronic_notary_metadata, allow_organization_to_use_remote_notary, allow_organization_to_use_remote_notary_metadata, allow_organization_to_use_third_party_electronic_notary, allow_organization_to_use_third_party_electronic_notary_metadata, allow_participant_recipient_type, allow_participant_recipient_type_metadata, allow_payment_processing, allow_payment_processing_metadata, allow_pending_destination_url_edition, allow_pending_destination_url_edition_metadata, allow_performance_analytics, allow_performance_analytics_metadata, allow_phone_authentication, allow_phone_authentication_metadata, allow_phone_auth_override, allow_phone_auth_override_metadata, allow_private_signing_groups, allow_private_signing_groups_metadata, allow_recipient_connect, allow_recipient_connect_metadata, allow_reminders, allow_reminders_metadata, allow_remote_notary, allow_remote_notary_metadata, allow_resource_file_branding, allow_resource_file_branding_metadata, allow_safe_bio_pharma_signer_certificate, allow_safe_bio_pharma_signer_certificate_metadata, allow_scheduled_sending, allow_scheduled_sending_metadata, allow_security_appliance, allow_security_appliance_metadata, allow_sending_envelopes_on_behalf_of_others, allow_sending_envelopes_on_behalf_of_others_metadata, allow_send_to_certified_delivery, allow_send_to_certified_delivery_metadata, allow_send_to_intermediary, allow_send_to_intermediary_metadata, allow_server_templates, allow_server_templates_metadata, allow_set_embedded_recipient_start_url, allow_set_embedded_recipient_start_url_metadata, allow_shared_tabs, allow_shared_tabs_metadata, allow_signature_stamps, allow_signature_stamps_metadata, allow_sign_document_from_home_page, allow_sign_document_from_home_page_metadata, allow_signer_reassign, allow_signer_reassign_metadata, allow_signer_reassign_override, allow_signer_reassign_override_metadata, allow_signing_extensions, allow_signing_extensions_metadata, allow_signing_groups, allow_signing_groups_metadata, allow_signing_insights, allow_signing_insights_metadata, allow_signing_radio_deselect, allow_signing_radio_deselect_metadata, allow_sign_now, allow_sign_now_metadata, allow_sms_delivery, allow_sms_delivery_metadata, allow_social_id_login, allow_social_id_login_metadata, allow_supplemental_documents, allow_supplemental_documents_metadata, allow_third_party_electronic_notary, allow_third_party_electronic_notary_metadata, allow_transactions_workspace, allow_transactions_workspace_metadata, allow_transactions_workspace_original, allow_transactions_workspace_original_metadata, allow_users_to_access_directory, allow_users_to_access_directory_metadata, allow_value_insights, allow_value_insights_metadata, allow_web_forms, allow_web_forms_metadata, allow_whats_app_delivery, allow_whats_app_delivery_metadata, anchor_population_scope, anchor_population_scope_metadata, anchor_tag_versioned_placement_enabled, anchor_tag_versioned_placement_metadata_enabled, attach_completed_envelope, attach_completed_envelope_metadata, authentication_check, authentication_check_metadata, auto_nav_rule, auto_nav_rule_metadata, auto_provision_signer_account, auto_provision_signer_account_metadata, bcc_email_archive, bcc_email_archive_metadata, beta_switch_configuration, beta_switch_configuration_metadata, billing_address, billing_address_metadata, bulk_send, bulk_send_action_resend_limit, bulk_send_max_copies_in_batch, bulk_send_max_unprocessed_envelopes_count, bulk_send_metadata, can_self_brand_send, can_self_brand_send_metadata, can_self_brand_sign, can_self_brand_sign_metadata, can_use_salesforce_o_auth, can_use_salesforce_o_auth_metadata, capture_voice_recording, capture_voice_recording_metadata, cfr21_simplified_signing_enabled, cfr21_simplified_signing_enabled_metadata, cfr_use_wide_image, cfr_use_wide_image_metadata, check_for_multiple_admins_on_account, check_for_multiple_admins_on_account_metadata, chrome_signature_enabled, chrome_signature_enabled_metadata, cloud_ready, comment_email_show_message_text, comment_email_show_message_text_metadata, comments_allow_envelope_override, comments_allow_envelope_override_metadata, conditional_fields_enabled, conditional_fields_enabled_metadata, consumer_disclosure_frequency, consumer_disclosure_frequency_metadata, convert_pdf_fields, convert_pdf_fields_metadata, custom_extraction_plan_levels, custom_extraction_plan_levels_metadata, data_population_scope, data_population_scope_metadata, default_signing_responsive_view, default_signing_responsive_view_metadata, default_signing_responsive_view_use_grade, default_signing_responsive_view_use_grade_metadata, default_to_advanced_envelopes_filter_form, default_to_advanced_envelopes_filter_form_metadata, disable_auto_template_matching, disable_auto_template_matching_metadata, disable_legacy_kba, disable_legacy_kba_metadata, disable_legacy_shared_envelopes, disable_legacy_shared_envelopes_metadata, disable_mobile_app, disable_mobile_app_metadata, disable_mobile_push_notifications, disable_mobile_push_notifications_metadata, disable_mobile_sending, disable_mobile_sending_metadata, disable_multiple_sessions, disable_multiple_sessions_metadata, disable_purge_notifications_for_sender_metadata, disable_signer_cert_view, disable_signer_cert_view_metadata, disable_signer_history_view, disable_signer_history_view_metadata, disable_style_signature, disable_style_signature_metadata, disable_upload_signature, disable_upload_signature_metadata, disable_user_sharing, disable_user_sharing_metadata, display_beta_switch, display_beta_switch_metadata, document_conversion_restrictions, document_conversion_restrictions_metadata, document_retention, document_retention_metadata, document_retention_purge_tabs, document_visibility, document_visibility_metadata, draft_envelope_retention, draft_envelope_retention_metadata, dss_sign_28411_enable_leave_page_prompt_radmin_option, dss_sign_29182_slide_up_bar_radmin_option, email_template_version, email_template_version_metadata, enable_access_code_generator, enable_access_code_generator_metadata, enable_account_wide_search, enable_account_wide_search_metadata, enable_additional_advanced_web_forms_features, enable_additional_advanced_web_forms_features_metadata, enable_adm_healthcare, enable_adm_healthcare_metadata, enable_advanced_envelopes_search, enable_advanced_envelopes_search_metadata, enable_advanced_payments, enable_advanced_payments_metadata, enable_advanced_power_forms, enable_advanced_power_forms_metadata, enable_advanced_search, enable_advanced_search_metadata, enable_agreement_actions_for_clm, enable_agreement_actions_for_clm_metadata, enable_agreement_actions_for_e_sign, enable_agreement_actions_for_e_sign_metadata, enable_agreement_desk_advanced, enable_agreement_desk_advanced_meta_data, enable_ai_agents, enable_ai_agents_metadata, enable_ai_contract_review, enable_ai_contract_review_metadata, enable_ai_sender_message, enable_ai_sender_message_metadata, enable_ai_suggested_fields, enable_ai_suggested_fields_auto_place, enable_ai_suggested_fields_auto_place_metadata, enable_ai_suggested_fields_metadata, enable_auto_nav, enable_auto_nav_metadata, enable_batch_update_envelope_types, enable_batch_update_envelope_types_metadata, enable_bcc_dummy_link, enable_bcc_dummy_link_metadata, enable_cac_piv_signature_group, enable_cac_piv_signature_group_metadata, enable_calculated_fields, enable_calculated_fields_metadata, enable_cfr_rapid_signing_embedded_auth, enable_cfr_rapid_signing_embedded_auth_metadata, enable_click_plus, enable_click_plus_conditional_content, enable_click_plus_conditional_content_meta_data, enable_click_plus_custom_fields, enable_click_plus_custom_fields_meta_data, enable_click_plus_custom_style, enable_click_plus_custom_style_meta_data, enable_click_plus_dynamic_content, enable_click_plus_dynamic_content_meta_data, enable_click_plus_meta_data, enable_clickwraps, enable_clickwraps_metadata, enable_combined_pdf_download_for_sbs, enable_comments_history_download_in_signing, enable_comments_history_download_in_signing_metadata, enable_contact_suggestions, enable_contact_suggestions_metadata, enable_content_search, enable_content_search_metadata, enable_coupa_core_extension, enable_coupa_core_extension_metadata, enable_coupa_iam_connector, enable_coupa_iam_connector_metadata, enable_custom_data_verification_extensions, enable_custom_data_verification_extensions_metadata, enable_customer_satisfaction_metric_tracking, enable_customer_satisfaction_metric_tracking_metadata, enable_data_verification_extensions, enable_data_verification_extensions_metadata, enable_document_template_library, enable_document_template_library_metadata, enable_d_sig_eu_advanced_pens, enable_d_sig_eu_advanced_pens_metadata, enable_d_sig_express_pens, enable_d_sig_express_pens_metadata, enable_d_sig_id_check_for_aes_pens, enable_d_sig_id_check_for_aes_pens_metadata, enable_d_sig_id_check_in_person_for_qes_pens, enable_d_sig_id_check_in_person_for_qes_pens_metadata, enable_d_sig_id_check_remote_for_qes_pens, enable_d_sig_id_check_remote_for_qes_pens_metadata, enable_d_sig_id_verification_pens, enable_d_sig_id_verification_pens_metadata, enable_d_sig_id_verification_premier_pens, enable_d_sig_id_verification_premier_pens_metadata, enable_d_sig_pen_group_eu_qes, enable_d_sig_pen_group_eu_qes_metadata, enable_d_sig_plg_eu_qes_pens, enable_d_sig_plg_eu_qes_pens_metadata, enable_ds_pro, enable_ds_pro_metadata, enable_enforce_tls_emails_setting_metadata, enable_envelope_stamping_by_account_admin, enable_envelope_stamping_by_account_admin_metadata, enable_envelope_stamping_by_ds_admin, enable_envelope_stamping_by_ds_admin_metadata, enable_e_sign_api_hourly_limit_management, enable_e_sign_api_hourly_limit_management_metadata, enable_esign_communities, enable_esign_communities_metadata, enable_esign_task_list, enable_esign_task_list_metadata, enable_generation_with3_p_integration, enable_generation_with3_p_integration_meta_data, enable_greenhouse_app, enable_greenhouse_app_metadata, enable_i9_on_demand, enable_i9_on_demand_metadata, enable_iam_clause_library, enable_iam_clause_library_metadata, enable_ia_mfor_x_embedded_ux, enable_ia_mfor_x_embedded_ux_metadata, enable_id_fx_accountless_sms_auth_for_part11, enable_id_fx_accountless_sms_auth_for_part11_metadata, enable_id_fx_intuit_kba, enable_id_fx_intuit_kba_metadata, enable_id_fx_phone_authentication, enable_id_fx_phone_authentication_metadata, enable_idfx_phone_auth_signature_auth_status, enable_idfx_phone_auth_signature_auth_status_metadata, enable_inbox_browse_views_powered_by_elastic_search, enable_inbox_browse_views_powered_by_elastic_search_metadata, enable_inbox_relevance_sort, enable_inbox_relevance_sort_metadata, enable_in_browser_editor, enable_in_browser_editor_metadata, enable_key_terms_suggestions_by_document_type, enable_key_terms_suggestions_by_document_type_metadata, enable_large_file_support, enable_large_file_support_metadata, enable_legacy_shared_envelopes, enable_legacy_shared_envelopes_metadata, enable_license_management, enable_license_management_metadata, enable_microsoft_dynamics365_extension, enable_microsoft_dynamics365_extension_metadata, enable_multi_user_repository_features, enable_multi_user_repository_features_metadata, enable_navigator_api_data_in, enable_navigator_api_data_in_metadata, enable_navigator_api_data_out, enable_navigator_api_data_out_metadata, enable_navigator_api_utilities, enable_navigator_api_utilities_metadata, enable_navigator_for_hr, enable_navigator_for_hr_metadata, enable_navigator_hierarchy_ai, enable_navigator_hierarchy_ai_metadata, enable_navigator_partial_ingestion, enable_navigator_partial_ingestion_metadata, enable_navigator_trial, enable_navigator_trial_metadata, enable_notary_on_demand_witness, enable_notary_on_demand_witness_metadata, enable_obligation_management, enable_obligation_management_metadata, enable_participant_recipient_setting_metadata, enable_payment_processing, enable_payment_processing_metadata, enable_pdfa_conversion, enable_pdfa_conversion_metadata, enable_power_form, enable_power_form_direct, enable_power_form_direct_metadata, enable_power_form_metadata, enable_premium_data_verification_extensions, enable_premium_data_verification_extensions_metadata, enable_recipient_domain_validation, enable_recipient_domain_validation_metadata, enable_recipient_may_provide_phone_number, enable_recipient_may_provide_phone_number_metadata, enable_report_links, enable_report_links_metadata, enable_require_sign_on_paper, enable_require_sign_on_paper_metadata, enable_reserved_domain, enable_reserved_domain_metadata, enable_responsive_signing, enable_responsive_signing_metadata, enable_reviewer_events_setting, enable_reviewer_events_setting_metadata, enable_sap_ariba_extension, enable_sap_ariba_extension_meta_data, enable_scheduled_release, enable_scheduled_release_metadata, enable_search_service_azure_uri, enable_search_service_azure_uri_metadata, enable_search_site_specific_api, enable_search_site_specific_api_metadata, enable_sending_tags_font_settings, enable_sending_tags_font_settings_metadata, enable_send_to_agent, enable_send_to_agent_metadata, enable_send_to_intermediary, enable_send_to_intermediary_metadata, enable_send_to_manage, enable_send_to_manage_metadata, enable_sequential_signing_api, enable_sequential_signing_api_metadata, enable_sequential_signing_ui, enable_sequential_signing_ui_metadata, enable_signer_attachments, enable_signer_attachments_metadata, enable_signing_ai_features_plan, enable_signing_ai_features_plan_metadata, enable_signing_extension_comments, enable_signing_extension_comments_metadata, enable_signing_extension_conversations, enable_signing_extension_conversations_metadata, enable_signing_group_continue_page_setting, enable_signing_group_continue_page_setting_metadata, enable_signing_order_settings_for_account, enable_signing_order_settings_for_account_metadata, enable_sign_on_paper, enable_sign_on_paper_metadata, enable_sign_on_paper_override, enable_sign_on_paper_override_metadata, enable_sign_with_notary, enable_sign_with_notary_metadata, enable_smart_contracts, enable_smart_contracts_metadata, enable_sms_authentication, enable_sms_authentication_metadata, enable_sms_delivery_additional_notification, enable_sms_delivery_additional_notification_metadata, enable_sms_delivery_primary, enable_social_id_login, enable_social_id_login_metadata, enable_strike_through, enable_strike_through_metadata, enable_tickets, enable_tickets_meta_data, enable_transaction_point, enable_transaction_point_metadata, enable_unified_repository, enable_unified_repository_metadata, enable_vaulting, enable_vaulting_metadata, enable_web_forms_runtime_ap_is, enable_web_forms_runtime_ap_is_metadata, enable_web_forms_separate_user_permissions, enable_web_forms_separate_user_permissions_metadata, enable_witnessing, enable_witnessing_metadata, enable_workday_financials_extension, enable_workday_financials_extension_meta_data, enable_workday_hr_app, enable_workday_hr_app_metadata, enforce_template_name_uniqueness, enforce_template_name_uniqueness_metadata, enforce_tls_emails, enforce_tls_emails_metadata, envelope_integration_allowed, envelope_integration_allowed_metadata, envelope_integration_enabled, envelope_integration_enabled_metadata, envelope_limits_total_document_size_allowed_in_mb, envelope_limits_total_document_size_allowed_in_mb_enabled, envelope_limits_total_document_size_allowed_in_mb_enabled_metadata, envelope_limits_total_document_size_allowed_in_mb_metadata, envelope_search_mode, envelope_search_mode_metadata, envelope_stamping_default_value, envelope_stamping_default_value_metadata, exit_prompt, exit_prompt_metadata, express_send, express_send_allow_tabs, express_send_allow_tabs_metadata, express_send_metadata, external_document_sources, external_signature_pad_type, external_signature_pad_type_metadata, fax_out_enabled, fax_out_enabled_metadata, finish_reminder, finish_reminder_metadata, forbid_adding_user_stamps, forbid_adding_user_stamps_metadata, guided_forms_html_allowed, guided_forms_html_allowed_metadata, guided_forms_html_conversion_policy, guided_forms_html_conversion_policy_metadata, has_recipient_connect_claimed_domain, hide_account_address_in_co_c, hide_account_address_in_co_c_metadata, hide_pricing, hide_pricing_metadata, id_check_configurations, id_check_expire, id_check_expire_days, id_check_expire_days_metadata, id_check_expire_metadata, id_check_expire_minutes, id_check_expire_minutes_metadata, id_check_required, id_check_required_metadata, identity_verification, identity_verification_metadata, idfx_kba_authentication_override, idfx_kba_authentication_override_metadata, idfx_phone_authentication_override, idfx_phone_authentication_override_metadata, ignore_error_if_anchor_tab_not_found, ignore_error_if_anchor_tab_not_found_metadata_enabled, in_person_id_check_question, in_person_id_check_question_metadata, in_person_signing_enabled, in_person_signing_enabled_metadata, in_session_enabled, in_session_enabled_metadata, in_session_suppress_emails, in_session_suppress_emails_metadata, is_connect_document_fields_enabled, isv_embed, isv_embed_meta_data, isv_oem_embed, isv_oem_embed_meta_data, linked_external_primary_accounts, maestro_plan_levels, maestro_plan_levels_metadata, maximum_signing_groups, maximum_signing_groups_metadata, maximum_users_per_signing_group, maximum_users_per_signing_group_metadata, max_number_of_custom_stamps, merge_mixed_mode_results, merge_mixed_mode_results_metadata, mobile_session_timeout, mobile_session_timeout_metadata, number_of_active_custom_stamps, opt_in_mobile_signing_v02, opt_in_mobile_signing_v02_metadata, opt_in_universal_signatures, opt_out_auto_nav_text_and_tab_color_updates, opt_out_auto_nav_text_and_tab_color_updates_metadata, opt_out_new_platform_seal, opt_out_new_platform_seal_platform_metadata, original_account_site, participant_copy_opt_out, participant_copy_opt_out_metadata, pdf_max_chunked_upload_part_size, pdf_max_chunked_upload_part_size_metadata, pdf_max_chunked_upload_total_size, pdf_max_chunked_upload_total_size_metadata, pdf_max_individual_upload_size, pdf_max_individual_upload_size_metadata, phone_auth_recipient_may_provide_phone_number, phone_auth_recipient_may_provide_phone_number_metadata, pki_sign_downloaded_pdf_docs, pki_sign_downloaded_pdf_docs_metadata, read_only_mode, read_only_mode_metadata, recipients_can_sign_offline, recipients_can_sign_offline_metadata, recipient_signing_auto_navigation_control, recipient_signing_auto_navigation_control_metadata, recycle_bin_envelope_retention, recycle_bin_envelope_retention_metadata, require21_cf_rpt11_compliance, require21_cf_rpt11_compliance_metadata, require_decline_reason, require_decline_reason_metadata, require_external_user_management, require_external_user_management_metadata, require_signer_certificate_type, require_signer_certificate_type_metadata, rsa_verid_account_name, rsa_verid_password, rsa_verid_ruleset, rsa_verid_user_id, self_signed_recipient_email_document, self_signed_recipient_email_document_metadata, self_signed_recipient_email_document_user_override, self_signed_recipient_email_document_user_override_metadata, sender_can_sign_in_each_location, sender_can_sign_in_each_location_metadata, sender_must_authenticate_signing, sender_must_authenticate_signing_metadata, sending_tags_font_color, sending_tags_font_color_metadata, sending_tags_font_name, sending_tags_font_name_metadata, sending_tags_font_size, sending_tags_font_size_metadata, send_lockout_recipient_notification, send_lockout_recipient_notification_metadata, send_to_certified_delivery_enabled, send_to_certified_delivery_enabled_metadata, session_timeout, session_timeout_metadata, set_recip_email_lang, set_recip_email_lang_metadata, set_recip_sign_lang, set_recip_sign_lang_metadata, shared_template_folders, shared_template_folders_metadata, show_complete_dialog_in_embedded_session, show_complete_dialog_in_embedded_session_metadata, show_conditional_routing_on_send, show_conditional_routing_on_send_metadata, show_initial_conditional_fields, show_initial_conditional_fields_metadata, show_localized_watermarks, show_localized_watermarks_metadata, show_masked_fields_when_downloading_document_as_sender, show_masked_fields_when_downloading_document_as_sender_metadata, show_tutorials, show_tutorials_metadata, signature_providers, signature_providers_metadata, sign_date_format, sign_date_format_metadata, sign_date_time_account_language_override, sign_date_time_account_language_override_metadata, sign_date_time_account_timezone_override, sign_date_time_account_timezone_override_metadata, signer_attach_certificate_to_envelope_pdf, signer_attach_certificate_to_envelope_pdf_metadata, signer_attach_concat, signer_attach_concat_metadata, signer_can_create_account, signer_can_create_account_metadata, signer_can_sign_on_mobile, signer_can_sign_on_mobile_metadata, signer_in_session_use_envelope_complete_email, signer_in_session_use_envelope_complete_email_metadata, signer_login_requirements, signer_login_requirements_metadata, signer_must_have_account, signer_must_have_account_metadata, signer_must_login_to_sign, signer_must_login_to_sign_metadata, signer_show_secure_field_initial_values, signer_show_secure_field_initial_values_metadata, signing_session_timeout, signing_session_timeout_metadata, signing_ui_version, signing_ui_version_metadata, sign_time_format, sign_time_format_metadata, sign_time_show_am_pm, sign_time_show_am_pm_metadata, simplified_sending_enabled, simplified_sending_enabled_metadata, single_sign_on_enabled, single_sign_on_enabled_metadata, skip_auth_completed_envelopes, skip_auth_completed_envelopes_metadata, social_id_recip_auth, social_id_recip_auth_metadata, specify_document_visibility, specify_document_visibility_metadata, start_in_advanced_correct, start_in_advanced_correct_metadata, supplemental_documents_must_accept, supplemental_documents_must_accept_metadata, supplemental_documents_must_read, supplemental_documents_must_read_metadata, supplemental_documents_must_view, supplemental_documents_must_view_metadata, suppress_certificate_enforcement, suppress_certificate_enforcement_metadata, tab_account_settings, timezone_offset_api, timezone_offset_api_metadata, timezone_offset_ui, timezone_offset_ui_metadata, universal_signature_opt_in, universal_signature_skip_platform_signature, universal_signature_skip_platform_signature_metadata, use_account_level_email, use_account_level_email_metadata, use_consumer_disclosure, use_consumer_disclosure_metadata, use_consumer_disclosure_within_account, use_consumer_disclosure_within_account_metadata, use_derived_keys, use_derived_keys_metadata, use_docu_sign_express_signer_certificate, use_docu_sign_express_signer_certificate_metadata, use_envelope_search_mixed_mode, use_envelope_search_mixed_mode_metadata, use_multi_app_groups_data, use_multi_app_groups_data_metadata, use_new_blob_for_pdf, use_new_blob_for_pdf_metadata, use_new_envelope_search, use_new_envelope_search_metadata, use_new_envelope_search_only_when_searching_after_date, use_new_envelope_search_only_when_searching_after_date_metadata, use_new_envelope_search_only_with_search_term, use_new_envelope_search_only_with_search_term_metadata, use_safe_signer_certificates, use_safe_signer_certificates_metadata, uses_api, uses_api_metadata, use_signature_provider_platform, use_signature_provider_platform_metadata, use_smart_contracts_v1, validations_allowed, validations_allowed_metadata, validations_brand, validations_brand_metadata, validations_cadence, validations_cadence_metadata, validations_enabled, validations_enabled_metadata, validations_report, validations_report_metadata, water_mark_enabled, water_mark_enabled_metadata, write_reminder_to_envelope_history, write_reminder_to_envelope_history_metadata, wurfl_min_allowable_screen_size, wurfl_min_allowable_screen_size_metadata].hash end # Builds the object from hash diff --git a/lib/docusign_esign/models/authorized_signatory.rb b/lib/docusign_esign/models/authorized_signatory.rb new file mode 100644 index 00000000..87c2294c --- /dev/null +++ b/lib/docusign_esign/models/authorized_signatory.rb @@ -0,0 +1,1206 @@ +=begin +#Docusign eSignature REST API + +#The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. + +OpenAPI spec version: v2.1 +Contact: devcenter@docusign.com +Generated by: https://github.com/swagger-api/swagger-codegen.git + +=end + +require 'date' + +module DocuSign_eSign + class AuthorizedSignatory + # If a value is provided, the recipient must enter the value as the access code to view and sign the envelope. Maximum Length: 50 characters and it must conform to the account's access code format setting. If blank, but the signer `accessCode` property is set in the envelope, then that value is used. If blank and the signer `accessCode` property is not set, then the access code is not required. + attr_accessor :access_code + + # + attr_accessor :access_code_metadata + + # This Optional attribute indicates that the access code will be added to the email sent to the recipient; this nullifies the Security measure of Access Code on the recipient. + attr_accessor :add_access_code_to_email + + # + attr_accessor :additional_notifications + + # + attr_accessor :agent_can_edit_email + + # + attr_accessor :agent_can_edit_name + + # + attr_accessor :allow_system_override_for_locked_recipient + + # + attr_accessor :auto_navigation + + # + attr_accessor :auto_responded_reason + + # Contains a URI for an endpoint that allows you to easily retrieve bulk recipient information. + attr_accessor :bulk_recipients_uri + + # + attr_accessor :bulk_send_v2_recipient + + # When set to **true**, specifies that the signer can perform the signing ceremony offline. + attr_accessor :can_sign_offline + + # Specifies whether the recipient is embedded or remote. If the `clientUserId` property is not null then the recipient is embedded. Note that if the `ClientUserId` property is set and either `SignerMustHaveAccount` or `SignerMustLoginToSign` property of the account settings is set to **true**, an error is generated on sending.ng. Maximum length: 100 characters. + attr_accessor :client_user_id + + # + attr_accessor :completed_count + + # + attr_accessor :consent_details_list + + # + attr_accessor :creation_reason + + # An optional array of strings that allows the sender to provide custom data about the recipient. This information is returned in the envelope status but otherwise not used by DocuSign. Each customField string can be a maximum of 100 characters. + attr_accessor :custom_fields + + # The date and time the recipient declined the document. + attr_accessor :declined_date_time + + # The reason the recipient declined the document. + attr_accessor :declined_reason + + # + attr_accessor :default_recipient + + # + attr_accessor :delegated_by + + # + attr_accessor :delegated_to + + # Reserved: For DocuSign use only. + attr_accessor :delivered_date_time + + # Reserved: For DocuSign use only. + attr_accessor :delivery_method + + # + attr_accessor :delivery_method_metadata + + # + attr_accessor :designator_id + + # + attr_accessor :designator_id_guid + + # + attr_accessor :document_template_id + + # + attr_accessor :document_visibility + + # + attr_accessor :email + + # + attr_accessor :email_metadata + + # A complex type that contains information sets the language of the recipient's email information. **IMPORTANT**: If you enable email notification for one recipient, you must enable email notification for all recipients as it overrides the Envelope Subject and `EmailBlurb` property settings. + attr_accessor :email_notification + + # + attr_accessor :email_recipient_post_signing_url + + # Specifies a sender provided valid URL string for redirecting an embedded recipient. When using this option, the embedded recipient still receives an email from DocuSign, just as a remote recipient would. When the document link in the email is clicked the recipient is redirected, through DocuSign, to the supplied URL to complete their actions. When routing to the URL, the sender's system (the server responding to the URL) must request a recipient token to launch a signing session. If set to `SIGN_AT_DOCUSIGN`, the recipient is directed to an embedded signing or viewing process directly at DocuSign. The signing or viewing action is initiated by the DocuSign system and the transaction activity and Certificate of Completion records will reflect this. In all other ways the process is identical to an embedded signing or viewing operation that is launched by any partner. It is important to remember that in a typical embedded workflow the authentication of an embedded recipient is the responsibility of the sending application, DocuSign expects that senders will follow their own process for establishing the recipient's identity. In this workflow the recipient goes through the sending application before the embedded signing or viewing process in initiated. However, when the sending application sets `EmbeddedRecipientStartURL=SIGN_AT_DOCUSIGN`, the recipient goes directly to the embedded signing or viewing process bypassing the sending application and any authentication steps the sending application would use. In this case, DocuSign recommends that you use one of the normal DocuSign authentication features (Access Code, Phone Authentication, SMS Authentication, etc.) to verify the identity of the recipient. If the `clientUserId` property is NOT set, and the `embeddedRecipientStartURL` is set, DocuSign will ignore the redirect URL and launch the standard signing process for the email recipient. Information can be appended to the embedded recipient start URL using merge fields. The available merge fields items are: envelopeId, recipientId, recipientName, recipientEmail, and customFields. The `customFields` property must be set fort the recipient or envelope. The merge fields are enclosed in double brackets. *Example*: `http://senderHost/[[mergeField1]]/ beginSigningSession? [[mergeField2]]&[[mergeField3]]` + attr_accessor :embedded_recipient_start_url + + # Array or errors. + attr_accessor :error_details + + # Specifies the documents that are not visible to this recipient. Document Visibility must be enabled for the account and the `enforceSignerVisibility` property must be set to **true** for the envelope to use this. When enforce signer visibility is enabled, documents with tabs can only be viewed by signers that have a tab on that document. Recipients that have an administrative role (Agent, Editor, or Intermediaries) or informational role (Certified Deliveries or Carbon Copies) can always see all the documents in an envelope, unless they are specifically excluded using this setting when an envelope is sent. Documents that do not have tabs are always visible to all recipients, unless they are specifically excluded using this setting when an envelope is sent. + attr_accessor :excluded_documents + + # Reserved: + attr_accessor :fax_number + + # + attr_accessor :fax_number_metadata + + # The user's first name. Maximum Length: 50 characters. + attr_accessor :first_name + + # + attr_accessor :first_name_metadata + + # + attr_accessor :full_name + + # + attr_accessor :full_name_metadata + + # Specifies authentication check by name. The names used here must be the same as the authentication type names used by the account (these name can also be found in the web console sending interface in the Identify list for a recipient,) This overrides any default authentication setting. *Example*: Your account has ID Check and SMS Authentication available and in the web console Identify list these appear as 'ID Check $' and 'SMS Auth $'. To use ID check in an envelope, the idCheckConfigurationName should be 'ID Check '. If you wanted to use SMS, it would be 'SMS Auth $' and you would need to add you would need to add phone number information to the `smsAuthentication` node. + attr_accessor :id_check_configuration_name + + # + attr_accessor :id_check_configuration_name_metadata + + # + attr_accessor :id_check_information_input + + # + attr_accessor :identity_verification + + # When set to **true** and the envelope recipient creates a DocuSign account after signing, the Manage Account Email Notification settings are used as the default settings for the recipient's account. + attr_accessor :inherit_email_notification_configuration + + # + attr_accessor :is_bulk_recipient + + # + attr_accessor :is_bulk_recipient_metadata + + # + attr_accessor :last_name + + # + attr_accessor :last_name_metadata + + # + attr_accessor :locked_recipient_phone_auth_editable + + # + attr_accessor :locked_recipient_sms_editable + + # + attr_accessor :name + + # + attr_accessor :name_metadata + + # + attr_accessor :notary_id + + # + attr_accessor :notary_signer_email_sent + + # Specifies a note that is unique to this recipient. This note is sent to the recipient via the signing email. The note displays in the signing UI near the upper left corner of the document on the signing screen. Maximum Length: 1000 characters. + attr_accessor :note + + # + attr_accessor :note_metadata + + # + attr_accessor :offline_attributes + + # + attr_accessor :phone_authentication + + # + attr_accessor :phone_number + + # + attr_accessor :proof_file + + # Reserved: + attr_accessor :recipient_attachments + + # + attr_accessor :recipient_authentication_status + + # + attr_accessor :recipient_feature_metadata + + # Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document. + attr_accessor :recipient_id + + # + attr_accessor :recipient_id_guid + + # + attr_accessor :recipient_signature_providers + + # + attr_accessor :recipient_supplies_tabs + + # + attr_accessor :recipient_type + + # + attr_accessor :recipient_type_metadata + + # When set to **true**, the recipient is required to use the specified ID check method (including Phone and SMS authentication) to validate their identity. + attr_accessor :require_id_lookup + + # + attr_accessor :require_id_lookup_metadata + + # + attr_accessor :require_signer_certificate + + # + attr_accessor :require_sign_on_paper + + # + attr_accessor :require_upload_signature + + # Optional element. Specifies the role name associated with the recipient.

This is required when working with template recipients. + attr_accessor :role_name + + # Specifies the routing order of the recipient in the envelope. + attr_accessor :routing_order + + # + attr_accessor :routing_order_metadata + + # The date and time the envelope was sent. + attr_accessor :sent_date_time + + # + attr_accessor :signature_info + + # Reserved: For DocuSign use only. + attr_accessor :signed_date_time + + # When set to **true**, specifies that the signer must sign in all locations. + attr_accessor :sign_in_each_location + + # + attr_accessor :sign_in_each_location_metadata + + # When set to **true** and the feature is enabled in the sender's account, the signing recipient is required to draw signatures and initials at each signature/initial tab ( instead of adopting a signature/initial style or only drawing a signature/initial once). + attr_accessor :signing_group_id + + # + attr_accessor :signing_group_id_metadata + + # The display name for the signing group. Maximum Length: 100 characters. + attr_accessor :signing_group_name + + # + attr_accessor :signing_group_type + + # A complex type that contains information about users in the signing group. + attr_accessor :signing_group_users + + # + attr_accessor :sms_authentication + + # Lists the social ID type that can be used for recipient authentication. + attr_accessor :social_authentications + + # 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. + attr_accessor :status + + # + attr_accessor :status_code + + # + attr_accessor :suppress_emails + + # + attr_accessor :tabs + + # When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients. + attr_accessor :template_locked + + # When set to **true**, the sender may not remove the recipient. Used only when working with template recipients. + attr_accessor :template_required + + # + attr_accessor :total_tab_count + + # + attr_accessor :user_id + + # + attr_accessor :web_form_recipient_view_id + + # Attribute mapping from ruby-style variable name to JSON key. + def self.attribute_map + { + :'access_code' => :'accessCode', + :'access_code_metadata' => :'accessCodeMetadata', + :'add_access_code_to_email' => :'addAccessCodeToEmail', + :'additional_notifications' => :'additionalNotifications', + :'agent_can_edit_email' => :'agentCanEditEmail', + :'agent_can_edit_name' => :'agentCanEditName', + :'allow_system_override_for_locked_recipient' => :'allowSystemOverrideForLockedRecipient', + :'auto_navigation' => :'autoNavigation', + :'auto_responded_reason' => :'autoRespondedReason', + :'bulk_recipients_uri' => :'bulkRecipientsUri', + :'bulk_send_v2_recipient' => :'bulkSendV2Recipient', + :'can_sign_offline' => :'canSignOffline', + :'client_user_id' => :'clientUserId', + :'completed_count' => :'completedCount', + :'consent_details_list' => :'consentDetailsList', + :'creation_reason' => :'creationReason', + :'custom_fields' => :'customFields', + :'declined_date_time' => :'declinedDateTime', + :'declined_reason' => :'declinedReason', + :'default_recipient' => :'defaultRecipient', + :'delegated_by' => :'delegatedBy', + :'delegated_to' => :'delegatedTo', + :'delivered_date_time' => :'deliveredDateTime', + :'delivery_method' => :'deliveryMethod', + :'delivery_method_metadata' => :'deliveryMethodMetadata', + :'designator_id' => :'designatorId', + :'designator_id_guid' => :'designatorIdGuid', + :'document_template_id' => :'documentTemplateId', + :'document_visibility' => :'documentVisibility', + :'email' => :'email', + :'email_metadata' => :'emailMetadata', + :'email_notification' => :'emailNotification', + :'email_recipient_post_signing_url' => :'emailRecipientPostSigningURL', + :'embedded_recipient_start_url' => :'embeddedRecipientStartURL', + :'error_details' => :'errorDetails', + :'excluded_documents' => :'excludedDocuments', + :'fax_number' => :'faxNumber', + :'fax_number_metadata' => :'faxNumberMetadata', + :'first_name' => :'firstName', + :'first_name_metadata' => :'firstNameMetadata', + :'full_name' => :'fullName', + :'full_name_metadata' => :'fullNameMetadata', + :'id_check_configuration_name' => :'idCheckConfigurationName', + :'id_check_configuration_name_metadata' => :'idCheckConfigurationNameMetadata', + :'id_check_information_input' => :'idCheckInformationInput', + :'identity_verification' => :'identityVerification', + :'inherit_email_notification_configuration' => :'inheritEmailNotificationConfiguration', + :'is_bulk_recipient' => :'isBulkRecipient', + :'is_bulk_recipient_metadata' => :'isBulkRecipientMetadata', + :'last_name' => :'lastName', + :'last_name_metadata' => :'lastNameMetadata', + :'locked_recipient_phone_auth_editable' => :'lockedRecipientPhoneAuthEditable', + :'locked_recipient_sms_editable' => :'lockedRecipientSmsEditable', + :'name' => :'name', + :'name_metadata' => :'nameMetadata', + :'notary_id' => :'notaryId', + :'notary_signer_email_sent' => :'notarySignerEmailSent', + :'note' => :'note', + :'note_metadata' => :'noteMetadata', + :'offline_attributes' => :'offlineAttributes', + :'phone_authentication' => :'phoneAuthentication', + :'phone_number' => :'phoneNumber', + :'proof_file' => :'proofFile', + :'recipient_attachments' => :'recipientAttachments', + :'recipient_authentication_status' => :'recipientAuthenticationStatus', + :'recipient_feature_metadata' => :'recipientFeatureMetadata', + :'recipient_id' => :'recipientId', + :'recipient_id_guid' => :'recipientIdGuid', + :'recipient_signature_providers' => :'recipientSignatureProviders', + :'recipient_supplies_tabs' => :'recipientSuppliesTabs', + :'recipient_type' => :'recipientType', + :'recipient_type_metadata' => :'recipientTypeMetadata', + :'require_id_lookup' => :'requireIdLookup', + :'require_id_lookup_metadata' => :'requireIdLookupMetadata', + :'require_signer_certificate' => :'requireSignerCertificate', + :'require_sign_on_paper' => :'requireSignOnPaper', + :'require_upload_signature' => :'requireUploadSignature', + :'role_name' => :'roleName', + :'routing_order' => :'routingOrder', + :'routing_order_metadata' => :'routingOrderMetadata', + :'sent_date_time' => :'sentDateTime', + :'signature_info' => :'signatureInfo', + :'signed_date_time' => :'signedDateTime', + :'sign_in_each_location' => :'signInEachLocation', + :'sign_in_each_location_metadata' => :'signInEachLocationMetadata', + :'signing_group_id' => :'signingGroupId', + :'signing_group_id_metadata' => :'signingGroupIdMetadata', + :'signing_group_name' => :'signingGroupName', + :'signing_group_type' => :'signingGroupType', + :'signing_group_users' => :'signingGroupUsers', + :'sms_authentication' => :'smsAuthentication', + :'social_authentications' => :'socialAuthentications', + :'status' => :'status', + :'status_code' => :'statusCode', + :'suppress_emails' => :'suppressEmails', + :'tabs' => :'tabs', + :'template_locked' => :'templateLocked', + :'template_required' => :'templateRequired', + :'total_tab_count' => :'totalTabCount', + :'user_id' => :'userId', + :'web_form_recipient_view_id' => :'webFormRecipientViewId' + } + end + + # Attribute type mapping. + def self.swagger_types + { + :'access_code' => :'String', + :'access_code_metadata' => :'PropertyMetadata', + :'add_access_code_to_email' => :'String', + :'additional_notifications' => :'Array', + :'agent_can_edit_email' => :'String', + :'agent_can_edit_name' => :'String', + :'allow_system_override_for_locked_recipient' => :'String', + :'auto_navigation' => :'String', + :'auto_responded_reason' => :'String', + :'bulk_recipients_uri' => :'String', + :'bulk_send_v2_recipient' => :'String', + :'can_sign_offline' => :'String', + :'client_user_id' => :'String', + :'completed_count' => :'String', + :'consent_details_list' => :'Array', + :'creation_reason' => :'String', + :'custom_fields' => :'Array', + :'declined_date_time' => :'String', + :'declined_reason' => :'String', + :'default_recipient' => :'String', + :'delegated_by' => :'DelegationInfo', + :'delegated_to' => :'Array', + :'delivered_date_time' => :'String', + :'delivery_method' => :'String', + :'delivery_method_metadata' => :'PropertyMetadata', + :'designator_id' => :'String', + :'designator_id_guid' => :'String', + :'document_template_id' => :'String', + :'document_visibility' => :'Array', + :'email' => :'String', + :'email_metadata' => :'PropertyMetadata', + :'email_notification' => :'RecipientEmailNotification', + :'email_recipient_post_signing_url' => :'String', + :'embedded_recipient_start_url' => :'String', + :'error_details' => :'ErrorDetails', + :'excluded_documents' => :'Array', + :'fax_number' => :'String', + :'fax_number_metadata' => :'PropertyMetadata', + :'first_name' => :'String', + :'first_name_metadata' => :'PropertyMetadata', + :'full_name' => :'String', + :'full_name_metadata' => :'PropertyMetadata', + :'id_check_configuration_name' => :'String', + :'id_check_configuration_name_metadata' => :'PropertyMetadata', + :'id_check_information_input' => :'IdCheckInformationInput', + :'identity_verification' => :'RecipientIdentityVerification', + :'inherit_email_notification_configuration' => :'String', + :'is_bulk_recipient' => :'String', + :'is_bulk_recipient_metadata' => :'PropertyMetadata', + :'last_name' => :'String', + :'last_name_metadata' => :'PropertyMetadata', + :'locked_recipient_phone_auth_editable' => :'String', + :'locked_recipient_sms_editable' => :'String', + :'name' => :'String', + :'name_metadata' => :'PropertyMetadata', + :'notary_id' => :'String', + :'notary_signer_email_sent' => :'String', + :'note' => :'String', + :'note_metadata' => :'PropertyMetadata', + :'offline_attributes' => :'OfflineAttributes', + :'phone_authentication' => :'RecipientPhoneAuthentication', + :'phone_number' => :'RecipientPhoneNumber', + :'proof_file' => :'RecipientProofFile', + :'recipient_attachments' => :'Array', + :'recipient_authentication_status' => :'AuthenticationStatus', + :'recipient_feature_metadata' => :'Array', + :'recipient_id' => :'String', + :'recipient_id_guid' => :'String', + :'recipient_signature_providers' => :'Array', + :'recipient_supplies_tabs' => :'String', + :'recipient_type' => :'String', + :'recipient_type_metadata' => :'PropertyMetadata', + :'require_id_lookup' => :'String', + :'require_id_lookup_metadata' => :'PropertyMetadata', + :'require_signer_certificate' => :'String', + :'require_sign_on_paper' => :'String', + :'require_upload_signature' => :'String', + :'role_name' => :'String', + :'routing_order' => :'String', + :'routing_order_metadata' => :'PropertyMetadata', + :'sent_date_time' => :'String', + :'signature_info' => :'RecipientSignatureInformation', + :'signed_date_time' => :'String', + :'sign_in_each_location' => :'String', + :'sign_in_each_location_metadata' => :'PropertyMetadata', + :'signing_group_id' => :'String', + :'signing_group_id_metadata' => :'PropertyMetadata', + :'signing_group_name' => :'String', + :'signing_group_type' => :'String', + :'signing_group_users' => :'Array', + :'sms_authentication' => :'RecipientSMSAuthentication', + :'social_authentications' => :'Array', + :'status' => :'String', + :'status_code' => :'String', + :'suppress_emails' => :'String', + :'tabs' => :'Tabs', + :'template_locked' => :'String', + :'template_required' => :'String', + :'total_tab_count' => :'String', + :'user_id' => :'String', + :'web_form_recipient_view_id' => :'String' + } + end + + # Initializes the object + # @param [Hash] attributes Model attributes in the form of hash + def initialize(attributes = {}) + return unless attributes.is_a?(Hash) + + # convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } + + if attributes.has_key?(:'accessCode') + self.access_code = attributes[:'accessCode'] + end + + if attributes.has_key?(:'accessCodeMetadata') + self.access_code_metadata = attributes[:'accessCodeMetadata'] + end + + if attributes.has_key?(:'addAccessCodeToEmail') + self.add_access_code_to_email = attributes[:'addAccessCodeToEmail'] + end + + if attributes.has_key?(:'additionalNotifications') + if (value = attributes[:'additionalNotifications']).is_a?(Array) + self.additional_notifications = value + end + end + + if attributes.has_key?(:'agentCanEditEmail') + self.agent_can_edit_email = attributes[:'agentCanEditEmail'] + end + + if attributes.has_key?(:'agentCanEditName') + self.agent_can_edit_name = attributes[:'agentCanEditName'] + end + + if attributes.has_key?(:'allowSystemOverrideForLockedRecipient') + self.allow_system_override_for_locked_recipient = attributes[:'allowSystemOverrideForLockedRecipient'] + end + + if attributes.has_key?(:'autoNavigation') + self.auto_navigation = attributes[:'autoNavigation'] + end + + if attributes.has_key?(:'autoRespondedReason') + self.auto_responded_reason = attributes[:'autoRespondedReason'] + end + + if attributes.has_key?(:'bulkRecipientsUri') + self.bulk_recipients_uri = attributes[:'bulkRecipientsUri'] + end + + if attributes.has_key?(:'bulkSendV2Recipient') + self.bulk_send_v2_recipient = attributes[:'bulkSendV2Recipient'] + end + + if attributes.has_key?(:'canSignOffline') + self.can_sign_offline = attributes[:'canSignOffline'] + end + + if attributes.has_key?(:'clientUserId') + self.client_user_id = attributes[:'clientUserId'] + end + + if attributes.has_key?(:'completedCount') + self.completed_count = attributes[:'completedCount'] + end + + if attributes.has_key?(:'consentDetailsList') + if (value = attributes[:'consentDetailsList']).is_a?(Array) + self.consent_details_list = value + end + end + + if attributes.has_key?(:'creationReason') + self.creation_reason = attributes[:'creationReason'] + end + + if attributes.has_key?(:'customFields') + if (value = attributes[:'customFields']).is_a?(Array) + self.custom_fields = value + end + end + + if attributes.has_key?(:'declinedDateTime') + self.declined_date_time = attributes[:'declinedDateTime'] + end + + if attributes.has_key?(:'declinedReason') + self.declined_reason = attributes[:'declinedReason'] + end + + if attributes.has_key?(:'defaultRecipient') + self.default_recipient = attributes[:'defaultRecipient'] + end + + if attributes.has_key?(:'delegatedBy') + self.delegated_by = attributes[:'delegatedBy'] + end + + if attributes.has_key?(:'delegatedTo') + if (value = attributes[:'delegatedTo']).is_a?(Array) + self.delegated_to = value + end + end + + if attributes.has_key?(:'deliveredDateTime') + self.delivered_date_time = attributes[:'deliveredDateTime'] + end + + if attributes.has_key?(:'deliveryMethod') + self.delivery_method = attributes[:'deliveryMethod'] + end + + if attributes.has_key?(:'deliveryMethodMetadata') + self.delivery_method_metadata = attributes[:'deliveryMethodMetadata'] + end + + if attributes.has_key?(:'designatorId') + self.designator_id = attributes[:'designatorId'] + end + + if attributes.has_key?(:'designatorIdGuid') + self.designator_id_guid = attributes[:'designatorIdGuid'] + end + + if attributes.has_key?(:'documentTemplateId') + self.document_template_id = attributes[:'documentTemplateId'] + end + + if attributes.has_key?(:'documentVisibility') + if (value = attributes[:'documentVisibility']).is_a?(Array) + self.document_visibility = value + end + end + + if attributes.has_key?(:'email') + self.email = attributes[:'email'] + end + + if attributes.has_key?(:'emailMetadata') + self.email_metadata = attributes[:'emailMetadata'] + end + + if attributes.has_key?(:'emailNotification') + self.email_notification = attributes[:'emailNotification'] + end + + if attributes.has_key?(:'emailRecipientPostSigningURL') + self.email_recipient_post_signing_url = attributes[:'emailRecipientPostSigningURL'] + end + + if attributes.has_key?(:'embeddedRecipientStartURL') + self.embedded_recipient_start_url = attributes[:'embeddedRecipientStartURL'] + end + + if attributes.has_key?(:'errorDetails') + self.error_details = attributes[:'errorDetails'] + end + + if attributes.has_key?(:'excludedDocuments') + if (value = attributes[:'excludedDocuments']).is_a?(Array) + self.excluded_documents = value + end + end + + if attributes.has_key?(:'faxNumber') + self.fax_number = attributes[:'faxNumber'] + end + + if attributes.has_key?(:'faxNumberMetadata') + self.fax_number_metadata = attributes[:'faxNumberMetadata'] + end + + if attributes.has_key?(:'firstName') + self.first_name = attributes[:'firstName'] + end + + if attributes.has_key?(:'firstNameMetadata') + self.first_name_metadata = attributes[:'firstNameMetadata'] + end + + if attributes.has_key?(:'fullName') + self.full_name = attributes[:'fullName'] + end + + if attributes.has_key?(:'fullNameMetadata') + self.full_name_metadata = attributes[:'fullNameMetadata'] + end + + if attributes.has_key?(:'idCheckConfigurationName') + self.id_check_configuration_name = attributes[:'idCheckConfigurationName'] + end + + if attributes.has_key?(:'idCheckConfigurationNameMetadata') + self.id_check_configuration_name_metadata = attributes[:'idCheckConfigurationNameMetadata'] + end + + if attributes.has_key?(:'idCheckInformationInput') + self.id_check_information_input = attributes[:'idCheckInformationInput'] + end + + if attributes.has_key?(:'identityVerification') + self.identity_verification = attributes[:'identityVerification'] + end + + if attributes.has_key?(:'inheritEmailNotificationConfiguration') + self.inherit_email_notification_configuration = attributes[:'inheritEmailNotificationConfiguration'] + end + + if attributes.has_key?(:'isBulkRecipient') + self.is_bulk_recipient = attributes[:'isBulkRecipient'] + end + + if attributes.has_key?(:'isBulkRecipientMetadata') + self.is_bulk_recipient_metadata = attributes[:'isBulkRecipientMetadata'] + end + + if attributes.has_key?(:'lastName') + self.last_name = attributes[:'lastName'] + end + + if attributes.has_key?(:'lastNameMetadata') + self.last_name_metadata = attributes[:'lastNameMetadata'] + end + + if attributes.has_key?(:'lockedRecipientPhoneAuthEditable') + self.locked_recipient_phone_auth_editable = attributes[:'lockedRecipientPhoneAuthEditable'] + end + + if attributes.has_key?(:'lockedRecipientSmsEditable') + self.locked_recipient_sms_editable = attributes[:'lockedRecipientSmsEditable'] + end + + if attributes.has_key?(:'name') + self.name = attributes[:'name'] + end + + if attributes.has_key?(:'nameMetadata') + self.name_metadata = attributes[:'nameMetadata'] + end + + if attributes.has_key?(:'notaryId') + self.notary_id = attributes[:'notaryId'] + end + + if attributes.has_key?(:'notarySignerEmailSent') + self.notary_signer_email_sent = attributes[:'notarySignerEmailSent'] + end + + if attributes.has_key?(:'note') + self.note = attributes[:'note'] + end + + if attributes.has_key?(:'noteMetadata') + self.note_metadata = attributes[:'noteMetadata'] + end + + if attributes.has_key?(:'offlineAttributes') + self.offline_attributes = attributes[:'offlineAttributes'] + end + + if attributes.has_key?(:'phoneAuthentication') + self.phone_authentication = attributes[:'phoneAuthentication'] + end + + if attributes.has_key?(:'phoneNumber') + self.phone_number = attributes[:'phoneNumber'] + end + + if attributes.has_key?(:'proofFile') + self.proof_file = attributes[:'proofFile'] + end + + if attributes.has_key?(:'recipientAttachments') + if (value = attributes[:'recipientAttachments']).is_a?(Array) + self.recipient_attachments = value + end + end + + if attributes.has_key?(:'recipientAuthenticationStatus') + self.recipient_authentication_status = attributes[:'recipientAuthenticationStatus'] + end + + if attributes.has_key?(:'recipientFeatureMetadata') + if (value = attributes[:'recipientFeatureMetadata']).is_a?(Array) + self.recipient_feature_metadata = value + end + end + + if attributes.has_key?(:'recipientId') + self.recipient_id = attributes[:'recipientId'] + end + + if attributes.has_key?(:'recipientIdGuid') + self.recipient_id_guid = attributes[:'recipientIdGuid'] + end + + if attributes.has_key?(:'recipientSignatureProviders') + if (value = attributes[:'recipientSignatureProviders']).is_a?(Array) + self.recipient_signature_providers = value + end + end + + if attributes.has_key?(:'recipientSuppliesTabs') + self.recipient_supplies_tabs = attributes[:'recipientSuppliesTabs'] + end + + if attributes.has_key?(:'recipientType') + self.recipient_type = attributes[:'recipientType'] + end + + if attributes.has_key?(:'recipientTypeMetadata') + self.recipient_type_metadata = attributes[:'recipientTypeMetadata'] + end + + if attributes.has_key?(:'requireIdLookup') + self.require_id_lookup = attributes[:'requireIdLookup'] + end + + if attributes.has_key?(:'requireIdLookupMetadata') + self.require_id_lookup_metadata = attributes[:'requireIdLookupMetadata'] + end + + if attributes.has_key?(:'requireSignerCertificate') + self.require_signer_certificate = attributes[:'requireSignerCertificate'] + end + + if attributes.has_key?(:'requireSignOnPaper') + self.require_sign_on_paper = attributes[:'requireSignOnPaper'] + end + + if attributes.has_key?(:'requireUploadSignature') + self.require_upload_signature = attributes[:'requireUploadSignature'] + end + + if attributes.has_key?(:'roleName') + self.role_name = attributes[:'roleName'] + end + + if attributes.has_key?(:'routingOrder') + self.routing_order = attributes[:'routingOrder'] + end + + if attributes.has_key?(:'routingOrderMetadata') + self.routing_order_metadata = attributes[:'routingOrderMetadata'] + end + + if attributes.has_key?(:'sentDateTime') + self.sent_date_time = attributes[:'sentDateTime'] + end + + if attributes.has_key?(:'signatureInfo') + self.signature_info = attributes[:'signatureInfo'] + end + + if attributes.has_key?(:'signedDateTime') + self.signed_date_time = attributes[:'signedDateTime'] + end + + if attributes.has_key?(:'signInEachLocation') + self.sign_in_each_location = attributes[:'signInEachLocation'] + end + + if attributes.has_key?(:'signInEachLocationMetadata') + self.sign_in_each_location_metadata = attributes[:'signInEachLocationMetadata'] + end + + if attributes.has_key?(:'signingGroupId') + self.signing_group_id = attributes[:'signingGroupId'] + end + + if attributes.has_key?(:'signingGroupIdMetadata') + self.signing_group_id_metadata = attributes[:'signingGroupIdMetadata'] + end + + if attributes.has_key?(:'signingGroupName') + self.signing_group_name = attributes[:'signingGroupName'] + end + + if attributes.has_key?(:'signingGroupType') + self.signing_group_type = attributes[:'signingGroupType'] + end + + if attributes.has_key?(:'signingGroupUsers') + if (value = attributes[:'signingGroupUsers']).is_a?(Array) + self.signing_group_users = value + end + end + + if attributes.has_key?(:'smsAuthentication') + self.sms_authentication = attributes[:'smsAuthentication'] + end + + if attributes.has_key?(:'socialAuthentications') + if (value = attributes[:'socialAuthentications']).is_a?(Array) + self.social_authentications = value + end + end + + if attributes.has_key?(:'status') + self.status = attributes[:'status'] + end + + if attributes.has_key?(:'statusCode') + self.status_code = attributes[:'statusCode'] + end + + if attributes.has_key?(:'suppressEmails') + self.suppress_emails = attributes[:'suppressEmails'] + end + + if attributes.has_key?(:'tabs') + self.tabs = attributes[:'tabs'] + end + + if attributes.has_key?(:'templateLocked') + self.template_locked = attributes[:'templateLocked'] + end + + if attributes.has_key?(:'templateRequired') + self.template_required = attributes[:'templateRequired'] + end + + if attributes.has_key?(:'totalTabCount') + self.total_tab_count = attributes[:'totalTabCount'] + end + + if attributes.has_key?(:'userId') + self.user_id = attributes[:'userId'] + end + + if attributes.has_key?(:'webFormRecipientViewId') + self.web_form_recipient_view_id = attributes[:'webFormRecipientViewId'] + end + end + + # Show invalid properties with the reasons. Usually used together with valid? + # @return Array for valid properties with the reasons + def list_invalid_properties + invalid_properties = Array.new + invalid_properties + end + + # Check to see if the all the properties in the model are valid + # @return true if the model is valid + def valid? + true + end + + # Checks equality by comparing each attribute. + # @param [Object] Object to be compared + def ==(o) + return true if self.equal?(o) + self.class == o.class && + access_code == o.access_code && + access_code_metadata == o.access_code_metadata && + add_access_code_to_email == o.add_access_code_to_email && + additional_notifications == o.additional_notifications && + agent_can_edit_email == o.agent_can_edit_email && + agent_can_edit_name == o.agent_can_edit_name && + allow_system_override_for_locked_recipient == o.allow_system_override_for_locked_recipient && + auto_navigation == o.auto_navigation && + auto_responded_reason == o.auto_responded_reason && + bulk_recipients_uri == o.bulk_recipients_uri && + bulk_send_v2_recipient == o.bulk_send_v2_recipient && + can_sign_offline == o.can_sign_offline && + client_user_id == o.client_user_id && + completed_count == o.completed_count && + consent_details_list == o.consent_details_list && + creation_reason == o.creation_reason && + custom_fields == o.custom_fields && + declined_date_time == o.declined_date_time && + declined_reason == o.declined_reason && + default_recipient == o.default_recipient && + delegated_by == o.delegated_by && + delegated_to == o.delegated_to && + delivered_date_time == o.delivered_date_time && + delivery_method == o.delivery_method && + delivery_method_metadata == o.delivery_method_metadata && + designator_id == o.designator_id && + designator_id_guid == o.designator_id_guid && + document_template_id == o.document_template_id && + document_visibility == o.document_visibility && + email == o.email && + email_metadata == o.email_metadata && + email_notification == o.email_notification && + email_recipient_post_signing_url == o.email_recipient_post_signing_url && + embedded_recipient_start_url == o.embedded_recipient_start_url && + error_details == o.error_details && + excluded_documents == o.excluded_documents && + fax_number == o.fax_number && + fax_number_metadata == o.fax_number_metadata && + first_name == o.first_name && + first_name_metadata == o.first_name_metadata && + full_name == o.full_name && + full_name_metadata == o.full_name_metadata && + id_check_configuration_name == o.id_check_configuration_name && + id_check_configuration_name_metadata == o.id_check_configuration_name_metadata && + id_check_information_input == o.id_check_information_input && + identity_verification == o.identity_verification && + inherit_email_notification_configuration == o.inherit_email_notification_configuration && + is_bulk_recipient == o.is_bulk_recipient && + is_bulk_recipient_metadata == o.is_bulk_recipient_metadata && + last_name == o.last_name && + last_name_metadata == o.last_name_metadata && + locked_recipient_phone_auth_editable == o.locked_recipient_phone_auth_editable && + locked_recipient_sms_editable == o.locked_recipient_sms_editable && + name == o.name && + name_metadata == o.name_metadata && + notary_id == o.notary_id && + notary_signer_email_sent == o.notary_signer_email_sent && + note == o.note && + note_metadata == o.note_metadata && + offline_attributes == o.offline_attributes && + phone_authentication == o.phone_authentication && + phone_number == o.phone_number && + proof_file == o.proof_file && + recipient_attachments == o.recipient_attachments && + recipient_authentication_status == o.recipient_authentication_status && + recipient_feature_metadata == o.recipient_feature_metadata && + recipient_id == o.recipient_id && + recipient_id_guid == o.recipient_id_guid && + recipient_signature_providers == o.recipient_signature_providers && + recipient_supplies_tabs == o.recipient_supplies_tabs && + recipient_type == o.recipient_type && + recipient_type_metadata == o.recipient_type_metadata && + require_id_lookup == o.require_id_lookup && + require_id_lookup_metadata == o.require_id_lookup_metadata && + require_signer_certificate == o.require_signer_certificate && + require_sign_on_paper == o.require_sign_on_paper && + require_upload_signature == o.require_upload_signature && + role_name == o.role_name && + routing_order == o.routing_order && + routing_order_metadata == o.routing_order_metadata && + sent_date_time == o.sent_date_time && + signature_info == o.signature_info && + signed_date_time == o.signed_date_time && + sign_in_each_location == o.sign_in_each_location && + sign_in_each_location_metadata == o.sign_in_each_location_metadata && + signing_group_id == o.signing_group_id && + signing_group_id_metadata == o.signing_group_id_metadata && + signing_group_name == o.signing_group_name && + signing_group_type == o.signing_group_type && + signing_group_users == o.signing_group_users && + sms_authentication == o.sms_authentication && + social_authentications == o.social_authentications && + status == o.status && + status_code == o.status_code && + suppress_emails == o.suppress_emails && + tabs == o.tabs && + template_locked == o.template_locked && + template_required == o.template_required && + total_tab_count == o.total_tab_count && + user_id == o.user_id && + web_form_recipient_view_id == o.web_form_recipient_view_id + end + + # @see the `==` method + # @param [Object] Object to be compared + def eql?(o) + self == o + end + + # Calculates hash code according to all attributes. + # @return [Fixnum] Hash code + def hash + [access_code, access_code_metadata, add_access_code_to_email, additional_notifications, agent_can_edit_email, agent_can_edit_name, allow_system_override_for_locked_recipient, auto_navigation, auto_responded_reason, bulk_recipients_uri, bulk_send_v2_recipient, can_sign_offline, client_user_id, completed_count, consent_details_list, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, delegated_by, delegated_to, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_template_id, document_visibility, email, email_metadata, email_notification, email_recipient_post_signing_url, embedded_recipient_start_url, error_details, excluded_documents, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, is_bulk_recipient, is_bulk_recipient_metadata, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, notary_id, notary_signer_email_sent, note, note_metadata, offline_attributes, phone_authentication, phone_number, proof_file, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_signature_providers, recipient_supplies_tabs, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, require_signer_certificate, require_sign_on_paper, require_upload_signature, role_name, routing_order, routing_order_metadata, sent_date_time, signature_info, signed_date_time, sign_in_each_location, sign_in_each_location_metadata, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_type, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, tabs, template_locked, template_required, total_tab_count, user_id, web_form_recipient_view_id].hash + end + + # Builds the object from hash + # @param [Hash] attributes Model attributes in the form of hash + # @return [Object] Returns the model itself + def build_from_hash(attributes) + return nil unless attributes.is_a?(Hash) + self.class.swagger_types.each_pair do |key, type| + if type =~ /\AArray<(.*)>/i + # check to ensure the input is an array given that the attribute + # is documented as an array but the input is not + if attributes[self.class.attribute_map[key]].is_a?(Array) + self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) + end + elsif !attributes[self.class.attribute_map[key]].nil? + self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) + end # or else data not found in attributes(hash), not an issue as the data can be optional + end + + self + end + + # Deserializes the data based on type + # @param string type Data type + # @param string value Value to be deserialized + # @return [Object] Deserialized data + def _deserialize(type, value) + case type.to_sym + when :DateTime + DateTime.parse(value) + when :Date + Date.parse(value) + when :String + value.to_s + when :Integer + value.to_i + when :Float + value.to_f + when :BOOLEAN + if value.to_s =~ /\A(true|t|yes|y|1)\z/i + true + else + false + end + when :Object + # generic object (usually a Hash), return directly + value + when /\AArray<(?.+)>\z/ + inner_type = Regexp.last_match[:inner_type] + value.map { |v| _deserialize(inner_type, v) } + when /\AHash<(?.+?), (?.+)>\z/ + k_type = Regexp.last_match[:k_type] + v_type = Regexp.last_match[:v_type] + {}.tap do |hash| + value.each do |k, v| + hash[_deserialize(k_type, k)] = _deserialize(v_type, v) + end + end + else # model + temp_model = DocuSign_eSign.const_get(type).new + temp_model.build_from_hash(value) + end + end + + # Returns the string representation of the object + # @return [String] String presentation of the object + def to_s + to_hash.to_s + end + + # to_body is an alias to to_hash (backward compatibility) + # @return [Hash] Returns the object in the form of hash + def to_body + to_hash + end + + # Returns the object in the form of hash + # @return [Hash] Returns the object in the form of hash + def to_hash + hash = {} + self.class.attribute_map.each_pair do |attr, param| + value = self.send(attr) + next if value.nil? + hash[param] = _to_hash(value) + end + hash + end + + # Outputs non-array value in the form of hash + # For object, use to_hash. Otherwise, just return the value + # @param [Object] value Any valid value + # @return [Hash] Returns the value in the form of hash + def _to_hash(value) + if value.is_a?(Array) + value.compact.map { |v| _to_hash(v) } + elsif value.is_a?(Hash) + {}.tap do |hash| + value.each { |k, v| hash[k] = _to_hash(v) } + end + elsif value.respond_to? :to_hash + value.to_hash + else + value + end + end + + end +end diff --git a/lib/docusign_esign/models/doc_gen_form_field.rb b/lib/docusign_esign/models/doc_gen_form_field.rb index 3d1c5d6b..f0fed039 100644 --- a/lib/docusign_esign/models/doc_gen_form_field.rb +++ b/lib/docusign_esign/models/doc_gen_form_field.rb @@ -22,6 +22,9 @@ class DocGenFormField # attr_accessor :description + # + attr_accessor :filter + # attr_accessor :format @@ -70,6 +73,7 @@ def self.attribute_map :'connected_object_details' => :'connectedObjectDetails', :'default_value' => :'defaultValue', :'description' => :'description', + :'filter' => :'filter', :'format' => :'format', :'fully_qualified_path' => :'fullyQualifiedPath', :'hidden' => :'hidden', @@ -93,15 +97,16 @@ def self.swagger_types :'connected_object_details' => :'ConnectedObjectDetails', :'default_value' => :'String', :'description' => :'String', + :'filter' => :'Object', :'format' => :'DocGenFormat', :'fully_qualified_path' => :'String', - :'hidden' => :'String', + :'hidden' => :'BOOLEAN', :'label' => :'String', :'name' => :'String', :'options' => :'Array', :'order' => :'String', :'predefined_validation' => :'String', - :'read_only' => :'String', + :'read_only' => :'BOOLEAN', :'required' => :'String', :'row_values' => :'Array', :'type' => :'String', @@ -130,6 +135,10 @@ def initialize(attributes = {}) self.description = attributes[:'description'] end + if attributes.has_key?(:'filter') + self.filter = attributes[:'filter'] + end + if attributes.has_key?(:'format') self.format = attributes[:'format'] end @@ -212,6 +221,7 @@ def ==(o) connected_object_details == o.connected_object_details && default_value == o.default_value && description == o.description && + filter == o.filter && format == o.format && fully_qualified_path == o.fully_qualified_path && hidden == o.hidden && @@ -237,7 +247,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Fixnum] Hash code def hash - [connected_object_details, default_value, description, format, fully_qualified_path, hidden, label, name, options, order, predefined_validation, read_only, required, row_values, type, validation, value].hash + [connected_object_details, default_value, description, filter, format, fully_qualified_path, hidden, label, name, options, order, predefined_validation, read_only, required, row_values, type, validation, value].hash end # Builds the object from hash diff --git a/lib/docusign_esign/models/recipients.rb b/lib/docusign_esign/models/recipients.rb index baae52bf..85085633 100644 --- a/lib/docusign_esign/models/recipients.rb +++ b/lib/docusign_esign/models/recipients.rb @@ -17,6 +17,9 @@ class Recipients # A complex type defining the management and access rights of a recipient assigned assigned as an agent on the document. attr_accessor :agents + # + attr_accessor :authorized_signatories + # A complex type containing information about recipients who should receive a copy of the envelope, but does not need to sign it. attr_accessor :carbon_copies @@ -63,6 +66,7 @@ class Recipients def self.attribute_map { :'agents' => :'agents', + :'authorized_signatories' => :'authorizedSignatories', :'carbon_copies' => :'carbonCopies', :'certified_deliveries' => :'certifiedDeliveries', :'current_routing_order' => :'currentRoutingOrder', @@ -84,6 +88,7 @@ def self.attribute_map def self.swagger_types { :'agents' => :'Array', + :'authorized_signatories' => :'Array', :'carbon_copies' => :'Array', :'certified_deliveries' => :'Array', :'current_routing_order' => :'String', @@ -115,6 +120,12 @@ def initialize(attributes = {}) end end + if attributes.has_key?(:'authorizedSignatories') + if (value = attributes[:'authorizedSignatories']).is_a?(Array) + self.authorized_signatories = value + end + end + if attributes.has_key?(:'carbonCopies') if (value = attributes[:'carbonCopies']).is_a?(Array) self.carbon_copies = value @@ -213,6 +224,7 @@ def ==(o) return true if self.equal?(o) self.class == o.class && agents == o.agents && + authorized_signatories == o.authorized_signatories && carbon_copies == o.carbon_copies && certified_deliveries == o.certified_deliveries && current_routing_order == o.current_routing_order && @@ -238,7 +250,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Fixnum] Hash code def hash - [agents, carbon_copies, certified_deliveries, current_routing_order, editors, error_details, in_person_signers, intermediaries, notaries, notary_witnesses, participants, recipient_count, seals, signers, witnesses].hash + [agents, authorized_signatories, carbon_copies, certified_deliveries, current_routing_order, editors, error_details, in_person_signers, intermediaries, notaries, notary_witnesses, participants, recipient_count, seals, signers, witnesses].hash end # Builds the object from hash diff --git a/lib/docusign_esign/models/template_recipients.rb b/lib/docusign_esign/models/template_recipients.rb index da64b113..e9ea48a2 100644 --- a/lib/docusign_esign/models/template_recipients.rb +++ b/lib/docusign_esign/models/template_recipients.rb @@ -16,6 +16,9 @@ class TemplateRecipients # A complex type defining the management and access rights of a recipient assigned assigned as an agent on the document. attr_accessor :agents + # + attr_accessor :authorized_signatories + # A complex type containing information about recipients who should receive a copy of the envelope, but does not need to sign it. attr_accessor :carbon_copies @@ -62,6 +65,7 @@ class TemplateRecipients def self.attribute_map { :'agents' => :'agents', + :'authorized_signatories' => :'authorizedSignatories', :'carbon_copies' => :'carbonCopies', :'certified_deliveries' => :'certifiedDeliveries', :'current_routing_order' => :'currentRoutingOrder', @@ -83,6 +87,7 @@ def self.attribute_map def self.swagger_types { :'agents' => :'Array', + :'authorized_signatories' => :'Array', :'carbon_copies' => :'Array', :'certified_deliveries' => :'Array', :'current_routing_order' => :'String', @@ -114,6 +119,12 @@ def initialize(attributes = {}) end end + if attributes.has_key?(:'authorizedSignatories') + if (value = attributes[:'authorizedSignatories']).is_a?(Array) + self.authorized_signatories = value + end + end + if attributes.has_key?(:'carbonCopies') if (value = attributes[:'carbonCopies']).is_a?(Array) self.carbon_copies = value @@ -212,6 +223,7 @@ def ==(o) return true if self.equal?(o) self.class == o.class && agents == o.agents && + authorized_signatories == o.authorized_signatories && carbon_copies == o.carbon_copies && certified_deliveries == o.certified_deliveries && current_routing_order == o.current_routing_order && @@ -237,7 +249,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Fixnum] Hash code def hash - [agents, carbon_copies, certified_deliveries, current_routing_order, editors, error_details, in_person_signers, intermediaries, notaries, notary_witnesses, participants, recipient_count, seals, signers, witnesses].hash + [agents, authorized_signatories, carbon_copies, certified_deliveries, current_routing_order, editors, error_details, in_person_signers, intermediaries, notaries, notary_witnesses, participants, recipient_count, seals, signers, witnesses].hash end # Builds the object from hash diff --git a/lib/docusign_esign/models/template_role.rb b/lib/docusign_esign/models/template_role.rb index 94c94337..a9358ca9 100644 --- a/lib/docusign_esign/models/template_role.rb +++ b/lib/docusign_esign/models/template_role.rb @@ -59,6 +59,15 @@ class TemplateRole # When set to **true** and the feature is enabled in the sender's account, the signing recipient is required to draw signatures and initials at each signature/initial tab ( instead of adopting a signature/initial style or only drawing a signature/initial once). attr_accessor :signing_group_id + # The display name for the signing group. Maximum Length: 100 characters. + attr_accessor :signing_group_name + + # + attr_accessor :signing_group_type + + # A complex type that contains information about users in the signing group. + attr_accessor :signing_group_users + # A list of tabs, which are represented graphically as symbols on documents at the time of signing. Tabs show recipients where to sign, initial, or enter data. They may also display data to the recipients. attr_accessor :tabs @@ -80,6 +89,9 @@ def self.attribute_map :'role_name' => :'roleName', :'routing_order' => :'routingOrder', :'signing_group_id' => :'signingGroupId', + :'signing_group_name' => :'signingGroupName', + :'signing_group_type' => :'signingGroupType', + :'signing_group_users' => :'signingGroupUsers', :'tabs' => :'tabs' } end @@ -102,6 +114,9 @@ def self.swagger_types :'role_name' => :'String', :'routing_order' => :'String', :'signing_group_id' => :'String', + :'signing_group_name' => :'String', + :'signing_group_type' => :'String', + :'signing_group_users' => :'Array', :'tabs' => :'Tabs' } end @@ -178,6 +193,20 @@ def initialize(attributes = {}) self.signing_group_id = attributes[:'signingGroupId'] end + if attributes.has_key?(:'signingGroupName') + self.signing_group_name = attributes[:'signingGroupName'] + end + + if attributes.has_key?(:'signingGroupType') + self.signing_group_type = attributes[:'signingGroupType'] + end + + if attributes.has_key?(:'signingGroupUsers') + if (value = attributes[:'signingGroupUsers']).is_a?(Array) + self.signing_group_users = value + end + end + if attributes.has_key?(:'tabs') self.tabs = attributes[:'tabs'] end @@ -216,6 +245,9 @@ def ==(o) role_name == o.role_name && routing_order == o.routing_order && signing_group_id == o.signing_group_id && + signing_group_name == o.signing_group_name && + signing_group_type == o.signing_group_type && + signing_group_users == o.signing_group_users && tabs == o.tabs end @@ -228,7 +260,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Fixnum] Hash code def hash - [access_code, additional_notifications, client_user_id, default_recipient, delivery_method, email, email_notification, embedded_recipient_start_url, in_person_signer_name, name, phone_number, recipient_signature_providers, role_name, routing_order, signing_group_id, tabs].hash + [access_code, additional_notifications, client_user_id, default_recipient, delivery_method, email, email_notification, embedded_recipient_start_url, in_person_signer_name, name, phone_number, recipient_signature_providers, role_name, routing_order, signing_group_id, signing_group_name, signing_group_type, signing_group_users, tabs].hash end # Builds the object from hash diff --git a/lib/docusign_esign/models/user_authorization.rb b/lib/docusign_esign/models/user_authorization.rb index e457b2a8..1a3c8b6d 100644 --- a/lib/docusign_esign/models/user_authorization.rb +++ b/lib/docusign_esign/models/user_authorization.rb @@ -43,6 +43,12 @@ class UserAuthorization # attr_accessor :start_date + # + attr_accessor :task_source + + # + attr_accessor :task_type + # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { @@ -55,7 +61,9 @@ def self.attribute_map :'modified_by' => :'modifiedBy', :'permission' => :'permission', :'principal_user' => :'principalUser', - :'start_date' => :'startDate' + :'start_date' => :'startDate', + :'task_source' => :'taskSource', + :'task_type' => :'taskType' } end @@ -71,7 +79,9 @@ def self.swagger_types :'modified_by' => :'String', :'permission' => :'String', :'principal_user' => :'AuthorizationUser', - :'start_date' => :'String' + :'start_date' => :'String', + :'task_source' => :'String', + :'task_type' => :'String' } end @@ -122,6 +132,14 @@ def initialize(attributes = {}) if attributes.has_key?(:'startDate') self.start_date = attributes[:'startDate'] end + + if attributes.has_key?(:'taskSource') + self.task_source = attributes[:'taskSource'] + end + + if attributes.has_key?(:'taskType') + self.task_type = attributes[:'taskType'] + end end # Show invalid properties with the reasons. Usually used together with valid? @@ -151,7 +169,9 @@ def ==(o) modified_by == o.modified_by && permission == o.permission && principal_user == o.principal_user && - start_date == o.start_date + start_date == o.start_date && + task_source == o.task_source && + task_type == o.task_type end # @see the `==` method @@ -163,7 +183,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Fixnum] Hash code def hash - [agent_user, authorization_id, created, created_by, end_date, modified, modified_by, permission, principal_user, start_date].hash + [agent_user, authorization_id, created, created_by, end_date, modified, modified_by, permission, principal_user, start_date, task_source, task_type].hash end # Builds the object from hash diff --git a/lib/docusign_esign/models/user_authorization_create_request.rb b/lib/docusign_esign/models/user_authorization_create_request.rb index 11de0b13..92d92e7a 100644 --- a/lib/docusign_esign/models/user_authorization_create_request.rb +++ b/lib/docusign_esign/models/user_authorization_create_request.rb @@ -25,13 +25,21 @@ class UserAuthorizationCreateRequest # attr_accessor :start_date + # + attr_accessor :task_source + + # + attr_accessor :task_type + # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { :'agent_user' => :'agentUser', :'end_date' => :'endDate', :'permission' => :'permission', - :'start_date' => :'startDate' + :'start_date' => :'startDate', + :'task_source' => :'taskSource', + :'task_type' => :'taskType' } end @@ -41,7 +49,9 @@ def self.swagger_types :'agent_user' => :'AuthorizationUser', :'end_date' => :'String', :'permission' => :'String', - :'start_date' => :'String' + :'start_date' => :'String', + :'task_source' => :'String', + :'task_type' => :'String' } end @@ -68,6 +78,14 @@ def initialize(attributes = {}) if attributes.has_key?(:'startDate') self.start_date = attributes[:'startDate'] end + + if attributes.has_key?(:'taskSource') + self.task_source = attributes[:'taskSource'] + end + + if attributes.has_key?(:'taskType') + self.task_type = attributes[:'taskType'] + end end # Show invalid properties with the reasons. Usually used together with valid? @@ -91,7 +109,9 @@ def ==(o) agent_user == o.agent_user && end_date == o.end_date && permission == o.permission && - start_date == o.start_date + start_date == o.start_date && + task_source == o.task_source && + task_type == o.task_type end # @see the `==` method @@ -103,7 +123,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Fixnum] Hash code def hash - [agent_user, end_date, permission, start_date].hash + [agent_user, end_date, permission, start_date, task_source, task_type].hash end # Builds the object from hash diff --git a/lib/docusign_esign/models/user_authorization_create_request_with_id.rb b/lib/docusign_esign/models/user_authorization_create_request_with_id.rb index aed1acf8..5f30cb99 100644 --- a/lib/docusign_esign/models/user_authorization_create_request_with_id.rb +++ b/lib/docusign_esign/models/user_authorization_create_request_with_id.rb @@ -28,6 +28,12 @@ class UserAuthorizationCreateRequestWithId # attr_accessor :start_date + # + attr_accessor :task_source + + # + attr_accessor :task_type + # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { @@ -35,7 +41,9 @@ def self.attribute_map :'authorization_id' => :'authorizationId', :'end_date' => :'endDate', :'permission' => :'permission', - :'start_date' => :'startDate' + :'start_date' => :'startDate', + :'task_source' => :'taskSource', + :'task_type' => :'taskType' } end @@ -46,7 +54,9 @@ def self.swagger_types :'authorization_id' => :'String', :'end_date' => :'String', :'permission' => :'String', - :'start_date' => :'String' + :'start_date' => :'String', + :'task_source' => :'String', + :'task_type' => :'String' } end @@ -77,6 +87,14 @@ def initialize(attributes = {}) if attributes.has_key?(:'startDate') self.start_date = attributes[:'startDate'] end + + if attributes.has_key?(:'taskSource') + self.task_source = attributes[:'taskSource'] + end + + if attributes.has_key?(:'taskType') + self.task_type = attributes[:'taskType'] + end end # Show invalid properties with the reasons. Usually used together with valid? @@ -101,7 +119,9 @@ def ==(o) authorization_id == o.authorization_id && end_date == o.end_date && permission == o.permission && - start_date == o.start_date + start_date == o.start_date && + task_source == o.task_source && + task_type == o.task_type end # @see the `==` method @@ -113,7 +133,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Fixnum] Hash code def hash - [agent_user, authorization_id, end_date, permission, start_date].hash + [agent_user, authorization_id, end_date, permission, start_date, task_source, task_type].hash end # Builds the object from hash diff --git a/lib/docusign_esign/version.rb b/lib/docusign_esign/version.rb index 3e4f2f28..78234e50 100644 --- a/lib/docusign_esign/version.rb +++ b/lib/docusign_esign/version.rb @@ -10,5 +10,5 @@ =end module DocuSign_eSign - VERSION = '7.0.0.rc1' + VERSION = '7.0.0' end