diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2e8f55d9..395f1d47 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,11 @@ 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.
+## [v10.0.0.rc1] - eSignature API v2.1-26.2.00.00 - 2026-06-01
+### Changed
+- Added support for version v2.1-26.2.00.00 of the DocuSign ESignature API.
+- Updated the SDK release version.
+
## [v6.0.0] - eSignature API v2.1-26.1.02.00 - 2026-05-04
### Removed
- Removed the deprecated `list_recipient_names_by_email` endpoint (`/v2.1/accounts/{accountId}/recipient_names`).
diff --git a/README.md b/README.md
index b378eb07..fe069418 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**: 6.0.0
+- **Latest SDK version**: 10.0.0.rc1
## Requirements
diff --git a/lib/docusign_esign.rb b/lib/docusign_esign.rb
index b307b2b5..1522fde9 100644
--- a/lib/docusign_esign.rb
+++ b/lib/docusign_esign.rb
@@ -51,6 +51,7 @@
require 'docusign_esign/models/account_signatures_information'
require 'docusign_esign/models/account_ui_settings'
require 'docusign_esign/models/add_on'
+require 'docusign_esign/models/additional_setting'
require 'docusign_esign/models/address_information'
require 'docusign_esign/models/address_information_input'
require 'docusign_esign/models/admin_message'
@@ -123,6 +124,7 @@
require 'docusign_esign/models/bulk_sending_copy'
require 'docusign_esign/models/bulk_sending_copy_custom_field'
require 'docusign_esign/models/bulk_sending_copy_doc_gen_form_field_row_value'
+require 'docusign_esign/models/bulk_sending_copy_prefill_tab'
require 'docusign_esign/models/bulk_sending_copy_recipient'
require 'docusign_esign/models/bulk_sending_copy_tab'
require 'docusign_esign/models/bulk_sending_list'
@@ -267,10 +269,11 @@
require 'docusign_esign/models/envelope_view_tagger_settings'
require 'docusign_esign/models/envelope_view_template_settings'
require 'docusign_esign/models/envelopes_information'
+require 'docusign_esign/models/envelopes_share_permission_request'
+require 'docusign_esign/models/envelopes_share_request'
+require 'docusign_esign/models/envelopes_share_response'
require 'docusign_esign/models/envelopes_shares_request'
-require 'docusign_esign/models/envelopes_shares_request_item'
require 'docusign_esign/models/envelopes_shares_response'
-require 'docusign_esign/models/envelopes_shares_response_item'
require 'docusign_esign/models/error_details'
require 'docusign_esign/models/event_notification'
require 'docusign_esign/models/event_result'
@@ -303,6 +306,8 @@
require 'docusign_esign/models/graphics_context'
require 'docusign_esign/models/group'
require 'docusign_esign/models/group_information'
+require 'docusign_esign/models/group_user_info'
+require 'docusign_esign/models/group_users_response'
require 'docusign_esign/models/id_check_configuration'
require 'docusign_esign/models/id_check_information_input'
require 'docusign_esign/models/id_check_security_step'
diff --git a/lib/docusign_esign/api/envelopes_api.rb b/lib/docusign_esign/api/envelopes_api.rb
index 8b7c807a..f29edaf8 100644
--- a/lib/docusign_esign/api/envelopes_api.rb
+++ b/lib/docusign_esign/api/envelopes_api.rb
@@ -244,6 +244,39 @@ def self.default
end
end
+ class GetSharedEnvelopesOptions
+ #
+ attr_accessor :count
+
+ #
+ attr_accessor :from_date
+
+ #
+ attr_accessor :include
+
+ #
+ attr_accessor :order
+
+ #
+ attr_accessor :order_by
+
+ #
+ attr_accessor :search_text
+
+ #
+ attr_accessor :start_position
+
+ #
+ attr_accessor :status
+
+ #
+ attr_accessor :to_date
+
+ def self.default
+ @@default ||= GetSharedEnvelopesOptions.new
+ end
+ end
+
class ListAuditEventsOptions
# Locale setting for the response, e.g., 'en-US'.
attr_accessor :locale
@@ -682,6 +715,8 @@ 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 = {}
@@ -2922,6 +2957,116 @@ def delete_envelope_workflow_step_definition_with_http_info(account_id, envelope
return data, status_code, headers
end
+ # Deletes a single envelope share
+ #
+ # @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 [nil]
+ def delete_envelopes_share(account_id, envelope_id, share_id)
+ delete_envelopes_share_with_http_info(account_id, envelope_id, share_id)
+ return nil
+ end
+
+ # Deletes a single envelope share
+ #
+ # @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<(nil, Fixnum, Hash)>] nil, response status code and response headers
+ def delete_envelopes_share_with_http_info(account_id, envelope_id, share_id)
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "Calling API: EnvelopesApi.delete_envelopes_share ..."
+ end
+ # verify the required parameter 'account_id' is set
+ fail ArgumentError, "Missing the required parameter 'account_id' when calling EnvelopesApi.delete_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.delete_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.delete_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(:DELETE, local_var_path,
+ :header_params => header_params,
+ :query_params => query_params,
+ :form_params => form_params,
+ :body => post_body,
+ :auth_names => auth_names)
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "API called: EnvelopesApi#delete_envelopes_share\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
+ end
+ return data, status_code, headers
+ end
+
+ # Deletes existing envelopes shares
+ #
+ # @param account_id The external account number (int) or account ID Guid.
+ # @param envelope_id The envelopeId Guid of the envelope being accessed.
+ # @param envelopes_shares_request (optional parameter)
+ # @return [nil]
+ def delete_envelopes_shares(account_id, envelope_id, envelopes_shares_request)
+ delete_envelopes_shares_with_http_info(account_id, envelope_id, envelopes_shares_request)
+ return nil
+ end
+
+ # Deletes existing envelopes shares
+ #
+ # @param account_id The external account number (int) or account ID Guid.
+ # @param envelope_id The envelopeId Guid of the envelope being accessed.
+ # @param envelopes_shares_request (optional parameter)
+ # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
+ def delete_envelopes_shares_with_http_info(account_id, envelope_id, envelopes_shares_request)
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "Calling API: EnvelopesApi.delete_envelopes_shares ..."
+ end
+ # verify the required parameter 'account_id' is set
+ fail ArgumentError, "Missing the required parameter 'account_id' when calling EnvelopesApi.delete_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.delete_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 = @api_client.object_to_http_body(envelopes_shares_request)
+ auth_names = []
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
+ :header_params => header_params,
+ :query_params => query_params,
+ :form_params => form_params,
+ :body => post_body,
+ :auth_names => auth_names)
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "API called: EnvelopesApi#delete_envelopes_shares\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
+ end
+ return data, status_code, headers
+ end
+
# Deletes an envelope lock.
# Deletes the lock from the specified envelope. The `X-DocuSign-Edit` header must be included in the request.
# @param account_id The external account number (int) or account ID Guid.
@@ -5032,6 +5177,66 @@ def get_recipient_signature_image_with_http_info(account_id, envelope_id, recipi
return data, status_code, headers
end
+ # Returns a filtered list of shared envelopes.
+ #
+ # @param account_id The external account number (int) or account ID Guid.
+ # @param DocuSign_eSign::GetSharedEnvelopesOptions Options for modifying the behavior of the function.
+ # @return [EnvelopesInformation]
+ def get_shared_envelopes(account_id, options = DocuSign_eSign::GetSharedEnvelopesOptions.default)
+ data, _status_code, _headers = get_shared_envelopes_with_http_info(account_id, options)
+ return data
+ end
+
+ # Returns a filtered list of shared envelopes.
+ #
+ # @param account_id The external account number (int) or account ID Guid.
+ # @param DocuSign_eSign::GetSharedEnvelopesOptions Options for modifying the behavior of the function.
+ # @return [Array<(EnvelopesInformation, Fixnum, Hash)>] EnvelopesInformation data, response status code and response headers
+ def get_shared_envelopes_with_http_info(account_id, options = DocuSign_eSign::GetSharedEnvelopesOptions.default)
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "Calling API: EnvelopesApi.get_shared_envelopes ..."
+ end
+ # verify the required parameter 'account_id' is set
+ fail ArgumentError, "Missing the required parameter 'account_id' when calling EnvelopesApi.get_shared_envelopes" if account_id.nil?
+ # resource path
+ local_var_path = "/v2.1/accounts/{accountId}/envelopes/shared".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s)
+
+ # query parameters
+ query_params = {}
+ query_params[:'count'] = options.count if !options.count.nil?
+ query_params[:'from_date'] = options.from_date if !options.from_date.nil?
+ query_params[:'include'] = options.include if !options.include.nil?
+ query_params[:'order'] = options.order if !options.order.nil?
+ query_params[:'order_by'] = options.order_by if !options.order_by.nil?
+ query_params[:'search_text'] = options.search_text if !options.search_text.nil?
+ query_params[:'start_position'] = options.start_position if !options.start_position.nil?
+ query_params[:'status'] = options.status if !options.status.nil?
+ query_params[:'to_date'] = options.to_date if !options.to_date.nil?
+
+ # 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 => 'EnvelopesInformation')
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "API called: EnvelopesApi#get_shared_envelopes\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
+ end
+ return data, status_code, headers
+ end
+
# Get encrypted tabs for envelope.
#
# @param account_id The external account number (int) or account ID Guid.
@@ -7063,6 +7268,120 @@ def update_envelope_workflow_step_definition_with_http_info(account_id, envelope
return data, status_code, headers
end
+ # Updates a single envelope share
+ #
+ # @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
+ # @param envelopes_share_permission_request (optional parameter)
+ # @return [EnvelopesShareResponse]
+ def update_envelopes_share(account_id, envelope_id, share_id, envelopes_share_permission_request)
+ data, _status_code, _headers = update_envelopes_share_with_http_info(account_id, envelope_id, share_id, envelopes_share_permission_request)
+ return data
+ end
+
+ # Updates a single envelope share
+ #
+ # @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
+ # @param envelopes_share_permission_request (optional parameter)
+ # @return [Array<(EnvelopesShareResponse, Fixnum, Hash)>] EnvelopesShareResponse data, response status code and response headers
+ def update_envelopes_share_with_http_info(account_id, envelope_id, share_id, envelopes_share_permission_request)
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "Calling API: EnvelopesApi.update_envelopes_share ..."
+ end
+ # verify the required parameter 'account_id' is set
+ fail ArgumentError, "Missing the required parameter 'account_id' when calling EnvelopesApi.update_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.update_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.update_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 = @api_client.object_to_http_body(envelopes_share_permission_request)
+ auth_names = []
+ data, status_code, headers = @api_client.call_api(:PUT, 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#update_envelopes_share\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
+ end
+ return data, status_code, headers
+ end
+
+ # Updates existing envelopes shares
+ #
+ # @param account_id The external account number (int) or account ID Guid.
+ # @param envelope_id The envelopeId Guid of the envelope being accessed.
+ # @param envelopes_shares_request (optional parameter)
+ # @return [EnvelopesSharesResponse]
+ def update_envelopes_shares(account_id, envelope_id, envelopes_shares_request)
+ data, _status_code, _headers = update_envelopes_shares_with_http_info(account_id, envelope_id, envelopes_shares_request)
+ return data
+ end
+
+ # Updates existing envelopes shares
+ #
+ # @param account_id The external account number (int) or account ID Guid.
+ # @param envelope_id The envelopeId Guid of the envelope being accessed.
+ # @param envelopes_shares_request (optional parameter)
+ # @return [Array<(EnvelopesSharesResponse, Fixnum, Hash)>] EnvelopesSharesResponse data, response status code and response headers
+ def update_envelopes_shares_with_http_info(account_id, envelope_id, envelopes_shares_request)
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "Calling API: EnvelopesApi.update_envelopes_shares ..."
+ end
+ # verify the required parameter 'account_id' is set
+ fail ArgumentError, "Missing the required parameter 'account_id' when calling EnvelopesApi.update_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.update_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 = @api_client.object_to_http_body(envelopes_shares_request)
+ auth_names = []
+ data, status_code, headers = @api_client.call_api(:PUT, 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#update_envelopes_shares\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
+ end
+ return data, status_code, headers
+ end
+
# Updates an envelope lock.
# Updates the lock duration time or update the `lockedByApp` property information for the specified envelope. The user and integrator key must match the user specified by the `lockByUser` property and integrator key information and the `X-DocuSign-Edit` header must be included or an error will be generated.
# @param account_id The external account number (int) or account ID Guid.
diff --git a/lib/docusign_esign/api/groups_api.rb b/lib/docusign_esign/api/groups_api.rb
index 23cf769d..516f209d 100644
--- a/lib/docusign_esign/api/groups_api.rb
+++ b/lib/docusign_esign/api/groups_api.rb
@@ -324,7 +324,7 @@ def get_brands_with_http_info(account_id, group_id)
# @param account_id The external account number (int) or account ID Guid.
# @param group_id The ID of the group being accessed.
# @param DocuSign_eSign::ListGroupUsersOptions Options for modifying the behavior of the function.
- # @return [UsersResponse]
+ # @return [GroupUsersResponse]
def list_group_users(account_id, group_id, options = DocuSign_eSign::ListGroupUsersOptions.default)
data, _status_code, _headers = list_group_users_with_http_info(account_id, group_id, options)
return data
@@ -335,7 +335,7 @@ def list_group_users(account_id, group_id, options = DocuSign_eSign::ListGroupUs
# @param account_id The external account number (int) or account ID Guid.
# @param group_id The ID of the group being accessed.
# @param DocuSign_eSign::ListGroupUsersOptions Options for modifying the behavior of the function.
- # @return [Array<(UsersResponse, Fixnum, Hash)>] UsersResponse data, response status code and response headers
+ # @return [Array<(GroupUsersResponse, Fixnum, Hash)>] GroupUsersResponse data, response status code and response headers
def list_group_users_with_http_info(account_id, group_id, options = DocuSign_eSign::ListGroupUsersOptions.default)
if @api_client.config.debugging
@api_client.config.logger.debug "Calling API: GroupsApi.list_group_users ..."
@@ -369,7 +369,7 @@ def list_group_users_with_http_info(account_id, group_id, options = DocuSign_eSi
:form_params => form_params,
:body => post_body,
:auth_names => auth_names,
- :return_type => 'UsersResponse')
+ :return_type => 'GroupUsersResponse')
if @api_client.config.debugging
@api_client.config.logger.debug "API called: GroupsApi#list_group_users\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
end
diff --git a/lib/docusign_esign/client/api_client.rb b/lib/docusign_esign/client/api_client.rb
index 79ca5889..9b7550f8 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/6.0.0/ruby-#{RUBY_VERSION}p#{RUBY_PATCHLEVEL}"
+ @user_agent = "Swagger-Codegen/v2.1/10.0.0.rc1/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 65a4c586..be7a5d3e 100644
--- a/lib/docusign_esign/models/account_settings_information.rb
+++ b/lib/docusign_esign/models/account_settings_information.rb
@@ -41,6 +41,9 @@ class AccountSettingsInformation
# An object that defines the settings to use in the UI.
attr_accessor :account_ui_settings
+ #
+ attr_accessor :additional_settings
+
#
attr_accessor :adopt_sig_config
@@ -71,6 +74,12 @@ class AccountSettingsInformation
#
attr_accessor :advanced_search_enable_template_name_field_metadata
+ #
+ attr_accessor :ai_assisted_web_form_creation_level
+
+ #
+ attr_accessor :ai_assisted_web_form_creation_level_metadata
+
#
attr_accessor :allow_access_code_format
@@ -1373,6 +1382,12 @@ class AccountSettingsInformation
#
attr_accessor :enable_iam_clause_library_metadata
+ #
+ attr_accessor :enable_ia_mfor_x_embedded_ux
+
+ #
+ attr_accessor :enable_ia_mfor_x_embedded_ux_metadata
+
#
attr_accessor :enable_id_fx_accountless_sms_auth_for_part11
@@ -1574,6 +1589,12 @@ class AccountSettingsInformation
# Metadata that indicates whether the `enableResponsiveSigning` property is editable.
attr_accessor :enable_responsive_signing_metadata
+ #
+ attr_accessor :enable_reviewer_events_setting
+
+ #
+ attr_accessor :enable_reviewer_events_setting_metadata
+
#
attr_accessor :enable_sap_ariba_extension
@@ -2591,6 +2612,7 @@ def self.attribute_map
:'account_name_metadata' => :'accountNameMetadata',
:'account_notification' => :'accountNotification',
:'account_ui_settings' => :'accountUISettings',
+ :'additional_settings' => :'additionalSettings',
:'adopt_sig_config' => :'adoptSigConfig',
:'adopt_sig_config_metadata' => :'adoptSigConfigMetadata',
:'advanced_correct' => :'advancedCorrect',
@@ -2601,6 +2623,8 @@ def self.attribute_map
:'advanced_search_enable_template_id_field_metadata' => :'advancedSearchEnableTemplateIdFieldMetadata',
:'advanced_search_enable_template_name_field' => :'advancedSearchEnableTemplateNameField',
:'advanced_search_enable_template_name_field_metadata' => :'advancedSearchEnableTemplateNameFieldMetadata',
+ :'ai_assisted_web_form_creation_level' => :'aiAssistedWebFormCreationLevel',
+ :'ai_assisted_web_form_creation_level_metadata' => :'aiAssistedWebFormCreationLevelMetadata',
:'allow_access_code_format' => :'allowAccessCodeFormat',
:'allow_access_code_format_metadata' => :'allowAccessCodeFormatMetadata',
:'allow_account_management_granular' => :'allowAccountManagementGranular',
@@ -3035,6 +3059,8 @@ def self.attribute_map
:'enable_i9_on_demand_metadata' => :'enableI9OnDemandMetadata',
:'enable_iam_clause_library' => :'enableIAMClauseLibrary',
:'enable_iam_clause_library_metadata' => :'enableIAMClauseLibraryMetadata',
+ :'enable_ia_mfor_x_embedded_ux' => :'enableIAMforXEmbeddedUX',
+ :'enable_ia_mfor_x_embedded_ux_metadata' => :'enableIAMforXEmbeddedUXMetadata',
:'enable_id_fx_accountless_sms_auth_for_part11' => :'enableIDFxAccountlessSMSAuthForPart11',
:'enable_id_fx_accountless_sms_auth_for_part11_metadata' => :'enableIDFxAccountlessSMSAuthForPart11Metadata',
:'enable_id_fx_intuit_kba' => :'enableIDFxIntuitKBA',
@@ -3102,6 +3128,8 @@ def self.attribute_map
:'enable_reserved_domain_metadata' => :'enableReservedDomainMetadata',
:'enable_responsive_signing' => :'enableResponsiveSigning',
:'enable_responsive_signing_metadata' => :'enableResponsiveSigningMetadata',
+ :'enable_reviewer_events_setting' => :'enableReviewerEventsSetting',
+ :'enable_reviewer_events_setting_metadata' => :'enableReviewerEventsSettingMetadata',
:'enable_sap_ariba_extension' => :'enableSAPAribaExtension',
:'enable_sap_ariba_extension_meta_data' => :'enableSAPAribaExtensionMetaData',
:'enable_scheduled_release' => :'enableScheduledRelease',
@@ -3452,6 +3480,7 @@ def self.swagger_types
:'account_name_metadata' => :'SettingsMetadata',
:'account_notification' => :'AccountNotification',
:'account_ui_settings' => :'AccountUISettings',
+ :'additional_settings' => :'Array',
:'adopt_sig_config' => :'String',
:'adopt_sig_config_metadata' => :'SettingsMetadata',
:'advanced_correct' => :'String',
@@ -3462,6 +3491,8 @@ def self.swagger_types
:'advanced_search_enable_template_id_field_metadata' => :'SettingsMetadata',
:'advanced_search_enable_template_name_field' => :'String',
:'advanced_search_enable_template_name_field_metadata' => :'SettingsMetadata',
+ :'ai_assisted_web_form_creation_level' => :'String',
+ :'ai_assisted_web_form_creation_level_metadata' => :'SettingsMetadata',
:'allow_access_code_format' => :'String',
:'allow_access_code_format_metadata' => :'SettingsMetadata',
:'allow_account_management_granular' => :'String',
@@ -3896,6 +3927,8 @@ def self.swagger_types
:'enable_i9_on_demand_metadata' => :'SettingsMetadata',
:'enable_iam_clause_library' => :'String',
:'enable_iam_clause_library_metadata' => :'SettingsMetadata',
+ :'enable_ia_mfor_x_embedded_ux' => :'String',
+ :'enable_ia_mfor_x_embedded_ux_metadata' => :'SettingsMetadata',
:'enable_id_fx_accountless_sms_auth_for_part11' => :'String',
:'enable_id_fx_accountless_sms_auth_for_part11_metadata' => :'SettingsMetadata',
:'enable_id_fx_intuit_kba' => :'String',
@@ -3963,6 +3996,8 @@ def self.swagger_types
:'enable_reserved_domain_metadata' => :'SettingsMetadata',
:'enable_responsive_signing' => :'String',
:'enable_responsive_signing_metadata' => :'SettingsMetadata',
+ :'enable_reviewer_events_setting' => :'String',
+ :'enable_reviewer_events_setting_metadata' => :'SettingsMetadata',
:'enable_sap_ariba_extension' => :'String',
:'enable_sap_ariba_extension_meta_data' => :'SettingsMetadata',
:'enable_scheduled_release' => :'String',
@@ -4345,6 +4380,12 @@ def initialize(attributes = {})
self.account_ui_settings = attributes[:'accountUISettings']
end
+ if attributes.has_key?(:'additionalSettings')
+ if (value = attributes[:'additionalSettings']).is_a?(Array)
+ self.additional_settings = value
+ end
+ end
+
if attributes.has_key?(:'adoptSigConfig')
self.adopt_sig_config = attributes[:'adoptSigConfig']
end
@@ -4385,6 +4426,14 @@ def initialize(attributes = {})
self.advanced_search_enable_template_name_field_metadata = attributes[:'advancedSearchEnableTemplateNameFieldMetadata']
end
+ if attributes.has_key?(:'aiAssistedWebFormCreationLevel')
+ self.ai_assisted_web_form_creation_level = attributes[:'aiAssistedWebFormCreationLevel']
+ end
+
+ if attributes.has_key?(:'aiAssistedWebFormCreationLevelMetadata')
+ self.ai_assisted_web_form_creation_level_metadata = attributes[:'aiAssistedWebFormCreationLevelMetadata']
+ end
+
if attributes.has_key?(:'allowAccessCodeFormat')
self.allow_access_code_format = attributes[:'allowAccessCodeFormat']
end
@@ -6121,6 +6170,14 @@ def initialize(attributes = {})
self.enable_iam_clause_library_metadata = attributes[:'enableIAMClauseLibraryMetadata']
end
+ if attributes.has_key?(:'enableIAMforXEmbeddedUX')
+ self.enable_ia_mfor_x_embedded_ux = attributes[:'enableIAMforXEmbeddedUX']
+ end
+
+ if attributes.has_key?(:'enableIAMforXEmbeddedUXMetadata')
+ self.enable_ia_mfor_x_embedded_ux_metadata = attributes[:'enableIAMforXEmbeddedUXMetadata']
+ end
+
if attributes.has_key?(:'enableIDFxAccountlessSMSAuthForPart11')
self.enable_id_fx_accountless_sms_auth_for_part11 = attributes[:'enableIDFxAccountlessSMSAuthForPart11']
end
@@ -6389,6 +6446,14 @@ def initialize(attributes = {})
self.enable_responsive_signing_metadata = attributes[:'enableResponsiveSigningMetadata']
end
+ if attributes.has_key?(:'enableReviewerEventsSetting')
+ self.enable_reviewer_events_setting = attributes[:'enableReviewerEventsSetting']
+ end
+
+ if attributes.has_key?(:'enableReviewerEventsSettingMetadata')
+ self.enable_reviewer_events_setting_metadata = attributes[:'enableReviewerEventsSettingMetadata']
+ end
+
if attributes.has_key?(:'enableSAPAribaExtension')
self.enable_sap_ariba_extension = attributes[:'enableSAPAribaExtension']
end
@@ -7765,6 +7830,7 @@ def ==(o)
account_name_metadata == o.account_name_metadata &&
account_notification == o.account_notification &&
account_ui_settings == o.account_ui_settings &&
+ additional_settings == o.additional_settings &&
adopt_sig_config == o.adopt_sig_config &&
adopt_sig_config_metadata == o.adopt_sig_config_metadata &&
advanced_correct == o.advanced_correct &&
@@ -7775,6 +7841,8 @@ def ==(o)
advanced_search_enable_template_id_field_metadata == o.advanced_search_enable_template_id_field_metadata &&
advanced_search_enable_template_name_field == o.advanced_search_enable_template_name_field &&
advanced_search_enable_template_name_field_metadata == o.advanced_search_enable_template_name_field_metadata &&
+ ai_assisted_web_form_creation_level == o.ai_assisted_web_form_creation_level &&
+ ai_assisted_web_form_creation_level_metadata == o.ai_assisted_web_form_creation_level_metadata &&
allow_access_code_format == o.allow_access_code_format &&
allow_access_code_format_metadata == o.allow_access_code_format_metadata &&
allow_account_management_granular == o.allow_account_management_granular &&
@@ -8209,6 +8277,8 @@ def ==(o)
enable_i9_on_demand_metadata == o.enable_i9_on_demand_metadata &&
enable_iam_clause_library == o.enable_iam_clause_library &&
enable_iam_clause_library_metadata == o.enable_iam_clause_library_metadata &&
+ enable_ia_mfor_x_embedded_ux == o.enable_ia_mfor_x_embedded_ux &&
+ enable_ia_mfor_x_embedded_ux_metadata == o.enable_ia_mfor_x_embedded_ux_metadata &&
enable_id_fx_accountless_sms_auth_for_part11 == o.enable_id_fx_accountless_sms_auth_for_part11 &&
enable_id_fx_accountless_sms_auth_for_part11_metadata == o.enable_id_fx_accountless_sms_auth_for_part11_metadata &&
enable_id_fx_intuit_kba == o.enable_id_fx_intuit_kba &&
@@ -8276,6 +8346,8 @@ def ==(o)
enable_reserved_domain_metadata == o.enable_reserved_domain_metadata &&
enable_responsive_signing == o.enable_responsive_signing &&
enable_responsive_signing_metadata == o.enable_responsive_signing_metadata &&
+ enable_reviewer_events_setting == o.enable_reviewer_events_setting &&
+ enable_reviewer_events_setting_metadata == o.enable_reviewer_events_setting_metadata &&
enable_sap_ariba_extension == o.enable_sap_ariba_extension &&
enable_sap_ariba_extension_meta_data == o.enable_sap_ariba_extension_meta_data &&
enable_scheduled_release == o.enable_scheduled_release &&
@@ -8622,7 +8694,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, 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, 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_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_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_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
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/additional_setting.rb b/lib/docusign_esign/models/additional_setting.rb
new file mode 100644
index 00000000..f88d83f4
--- /dev/null
+++ b/lib/docusign_esign/models/additional_setting.rb
@@ -0,0 +1,204 @@
+=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 AdditionalSetting
+ #
+ attr_accessor :metadata
+
+ #
+ attr_accessor :name
+
+ # Specifies the value of the tab.
+ attr_accessor :value
+
+ # Attribute mapping from ruby-style variable name to JSON key.
+ def self.attribute_map
+ {
+ :'metadata' => :'metadata',
+ :'name' => :'name',
+ :'value' => :'value'
+ }
+ end
+
+ # Attribute type mapping.
+ def self.swagger_types
+ {
+ :'metadata' => :'SettingsMetadata',
+ :'name' => :'String',
+ :'value' => :'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?(:'metadata')
+ self.metadata = attributes[:'metadata']
+ end
+
+ if attributes.has_key?(:'name')
+ self.name = attributes[:'name']
+ end
+
+ if attributes.has_key?(:'value')
+ self.value = attributes[:'value']
+ 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 &&
+ metadata == o.metadata &&
+ name == o.name &&
+ value == o.value
+ 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
+ [metadata, name, value].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/approve.rb b/lib/docusign_esign/models/approve.rb
index ea090573..403df6ee 100644
--- a/lib/docusign_esign/models/approve.rb
+++ b/lib/docusign_esign/models/approve.rb
@@ -62,6 +62,9 @@ class Approve
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -315,6 +318,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -415,6 +419,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -568,6 +573,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -917,6 +926,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1006,7 +1016,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, button_text, button_text_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, button_text, button_text_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/bulk_sending_copy.rb b/lib/docusign_esign/models/bulk_sending_copy.rb
index e845ee96..bae6a918 100644
--- a/lib/docusign_esign/models/bulk_sending_copy.rb
+++ b/lib/docusign_esign/models/bulk_sending_copy.rb
@@ -26,6 +26,9 @@ class BulkSendingCopy
# Specifies the subject of the email that is sent to all recipients. See [ML:Template Email Subject Merge Fields] for information about adding merge field information to the email subject.
attr_accessor :email_subject
+ #
+ attr_accessor :prefill_tabs
+
# An array of powerform recipients.
attr_accessor :recipients
@@ -36,6 +39,7 @@ def self.attribute_map
:'doc_gen_form_fields' => :'docGenFormFields',
:'email_blurb' => :'emailBlurb',
:'email_subject' => :'emailSubject',
+ :'prefill_tabs' => :'prefillTabs',
:'recipients' => :'recipients'
}
end
@@ -47,6 +51,7 @@ def self.swagger_types
:'doc_gen_form_fields' => :'Array',
:'email_blurb' => :'String',
:'email_subject' => :'String',
+ :'prefill_tabs' => :'Array',
:'recipients' => :'Array'
}
end
@@ -79,6 +84,12 @@ def initialize(attributes = {})
self.email_subject = attributes[:'emailSubject']
end
+ if attributes.has_key?(:'prefillTabs')
+ if (value = attributes[:'prefillTabs']).is_a?(Array)
+ self.prefill_tabs = value
+ end
+ end
+
if attributes.has_key?(:'recipients')
if (value = attributes[:'recipients']).is_a?(Array)
self.recipients = value
@@ -108,6 +119,7 @@ def ==(o)
doc_gen_form_fields == o.doc_gen_form_fields &&
email_blurb == o.email_blurb &&
email_subject == o.email_subject &&
+ prefill_tabs == o.prefill_tabs &&
recipients == o.recipients
end
@@ -120,7 +132,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [custom_fields, doc_gen_form_fields, email_blurb, email_subject, recipients].hash
+ [custom_fields, doc_gen_form_fields, email_blurb, email_subject, prefill_tabs, recipients].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/bulk_sending_copy_prefill_tab.rb b/lib/docusign_esign/models/bulk_sending_copy_prefill_tab.rb
new file mode 100644
index 00000000..3f5dcc2d
--- /dev/null
+++ b/lib/docusign_esign/models/bulk_sending_copy_prefill_tab.rb
@@ -0,0 +1,194 @@
+=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 BulkSendingCopyPrefillTab
+ # The original value of the tab.
+ attr_accessor :initial_value
+
+ # The label string associated with the tab.
+ attr_accessor :tab_label
+
+ # Attribute mapping from ruby-style variable name to JSON key.
+ def self.attribute_map
+ {
+ :'initial_value' => :'initialValue',
+ :'tab_label' => :'tabLabel'
+ }
+ end
+
+ # Attribute type mapping.
+ def self.swagger_types
+ {
+ :'initial_value' => :'String',
+ :'tab_label' => :'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?(:'initialValue')
+ self.initial_value = attributes[:'initialValue']
+ end
+
+ if attributes.has_key?(:'tabLabel')
+ self.tab_label = attributes[:'tabLabel']
+ 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 &&
+ initial_value == o.initial_value &&
+ tab_label == o.tab_label
+ 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
+ [initial_value, tab_label].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/checkbox.rb b/lib/docusign_esign/models/checkbox.rb
index a39bb913..7ed0309f 100644
--- a/lib/docusign_esign/models/checkbox.rb
+++ b/lib/docusign_esign/models/checkbox.rb
@@ -62,6 +62,9 @@ class Checkbox
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -354,6 +357,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -467,6 +471,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -633,6 +638,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1034,6 +1043,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1136,7 +1146,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locked, locked_metadata, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, selected, selected_metadata, selected_original, selected_original_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locked, locked_metadata, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, selected, selected_metadata, selected_original, selected_original_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/comment_thread.rb b/lib/docusign_esign/models/comment_thread.rb
index 156adbe0..c72ccb3e 100644
--- a/lib/docusign_esign/models/comment_thread.rb
+++ b/lib/docusign_esign/models/comment_thread.rb
@@ -61,6 +61,9 @@ class CommentThread
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -314,6 +317,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -414,6 +418,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -567,6 +572,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -918,6 +927,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1007,7 +1017,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, comments, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, thread_id, tooltip, tool_tip_metadata, underline, underline_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, comments, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, thread_id, tooltip, tool_tip_metadata, underline, underline_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/commission_county.rb b/lib/docusign_esign/models/commission_county.rb
index b9340174..15f5df6a 100644
--- a/lib/docusign_esign/models/commission_county.rb
+++ b/lib/docusign_esign/models/commission_county.rb
@@ -62,6 +62,9 @@ class CommissionCounty
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -357,6 +360,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -471,6 +475,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -638,6 +643,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1043,6 +1052,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1146,7 +1156,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/commission_expiration.rb b/lib/docusign_esign/models/commission_expiration.rb
index bb4db4b3..c6b64461 100644
--- a/lib/docusign_esign/models/commission_expiration.rb
+++ b/lib/docusign_esign/models/commission_expiration.rb
@@ -62,6 +62,9 @@ class CommissionExpiration
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -357,6 +360,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -471,6 +475,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -638,6 +643,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1043,6 +1052,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1146,7 +1156,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/commission_number.rb b/lib/docusign_esign/models/commission_number.rb
index 5c8c592c..60689e8d 100644
--- a/lib/docusign_esign/models/commission_number.rb
+++ b/lib/docusign_esign/models/commission_number.rb
@@ -62,6 +62,9 @@ class CommissionNumber
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -357,6 +360,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -471,6 +475,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -638,6 +643,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1043,6 +1052,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1146,7 +1156,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/commission_state.rb b/lib/docusign_esign/models/commission_state.rb
index 6e186fe9..538d479e 100644
--- a/lib/docusign_esign/models/commission_state.rb
+++ b/lib/docusign_esign/models/commission_state.rb
@@ -62,6 +62,9 @@ class CommissionState
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -357,6 +360,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -471,6 +475,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -638,6 +643,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1043,6 +1052,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1146,7 +1156,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/company.rb b/lib/docusign_esign/models/company.rb
index 4d68bdeb..71769726 100644
--- a/lib/docusign_esign/models/company.rb
+++ b/lib/docusign_esign/models/company.rb
@@ -62,6 +62,9 @@ class Company
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -357,6 +360,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -471,6 +475,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -638,6 +643,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1043,6 +1052,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1146,7 +1156,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/date.rb b/lib/docusign_esign/models/date.rb
index 566b02ac..ba63ec1f 100644
--- a/lib/docusign_esign/models/date.rb
+++ b/lib/docusign_esign/models/date.rb
@@ -62,6 +62,9 @@ class Date
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -399,6 +402,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -527,6 +531,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -708,6 +713,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1169,6 +1178,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1286,7 +1296,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/date_signed.rb b/lib/docusign_esign/models/date_signed.rb
index 529f33b4..7511e15c 100644
--- a/lib/docusign_esign/models/date_signed.rb
+++ b/lib/docusign_esign/models/date_signed.rb
@@ -62,6 +62,9 @@ class DateSigned
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -324,6 +327,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -427,6 +431,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -583,6 +588,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -944,6 +953,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1036,7 +1046,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, timestamp_standardized, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, timestamp_standardized, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/decline.rb b/lib/docusign_esign/models/decline.rb
index c6a38fa8..492ca1a8 100644
--- a/lib/docusign_esign/models/decline.rb
+++ b/lib/docusign_esign/models/decline.rb
@@ -62,6 +62,9 @@ class Decline
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -321,6 +324,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -423,6 +427,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -578,6 +583,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -935,6 +944,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1026,7 +1036,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, button_text, button_text_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, decline_reason, decline_reason_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, button_text, button_text_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, decline_reason, decline_reason_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/doc_gen_form_field.rb b/lib/docusign_esign/models/doc_gen_form_field.rb
index d9328af2..3d1c5d6b 100644
--- a/lib/docusign_esign/models/doc_gen_form_field.rb
+++ b/lib/docusign_esign/models/doc_gen_form_field.rb
@@ -16,6 +16,9 @@ class DocGenFormField
#
attr_accessor :connected_object_details
+ #
+ attr_accessor :default_value
+
#
attr_accessor :description
@@ -65,6 +68,7 @@ class DocGenFormField
def self.attribute_map
{
:'connected_object_details' => :'connectedObjectDetails',
+ :'default_value' => :'defaultValue',
:'description' => :'description',
:'format' => :'format',
:'fully_qualified_path' => :'fullyQualifiedPath',
@@ -87,6 +91,7 @@ def self.attribute_map
def self.swagger_types
{
:'connected_object_details' => :'ConnectedObjectDetails',
+ :'default_value' => :'String',
:'description' => :'String',
:'format' => :'DocGenFormat',
:'fully_qualified_path' => :'String',
@@ -117,6 +122,10 @@ def initialize(attributes = {})
self.connected_object_details = attributes[:'connectedObjectDetails']
end
+ if attributes.has_key?(:'defaultValue')
+ self.default_value = attributes[:'defaultValue']
+ end
+
if attributes.has_key?(:'description')
self.description = attributes[:'description']
end
@@ -201,6 +210,7 @@ def ==(o)
return true if self.equal?(o)
self.class == o.class &&
connected_object_details == o.connected_object_details &&
+ default_value == o.default_value &&
description == o.description &&
format == o.format &&
fully_qualified_path == o.fully_qualified_path &&
@@ -227,7 +237,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [connected_object_details, 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, 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/draw.rb b/lib/docusign_esign/models/draw.rb
index 5bf6c8f1..887c5fd4 100644
--- a/lib/docusign_esign/models/draw.rb
+++ b/lib/docusign_esign/models/draw.rb
@@ -65,6 +65,9 @@ class Draw
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -292,6 +295,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -384,6 +388,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -532,6 +537,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -846,6 +855,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -926,7 +936,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, allow_signer_upload, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, locked, locked_metadata, merge_field, merge_field_xml, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, shared, shared_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, use_background_as_canvas, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, allow_signer_upload, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, locked, locked_metadata, merge_field, merge_field_xml, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, shared, shared_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, use_background_as_canvas, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/email.rb b/lib/docusign_esign/models/email.rb
index 309d0b29..e7931aab 100644
--- a/lib/docusign_esign/models/email.rb
+++ b/lib/docusign_esign/models/email.rb
@@ -62,6 +62,9 @@ class Email
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -399,6 +402,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -527,6 +531,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -708,6 +713,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1169,6 +1178,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1286,7 +1296,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/email_address.rb b/lib/docusign_esign/models/email_address.rb
index 9c9ab6d3..d953fa10 100644
--- a/lib/docusign_esign/models/email_address.rb
+++ b/lib/docusign_esign/models/email_address.rb
@@ -62,6 +62,9 @@ class EmailAddress
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -321,6 +324,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -423,6 +427,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -578,6 +583,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -935,6 +944,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1026,7 +1036,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/envelope_id.rb b/lib/docusign_esign/models/envelope_id.rb
index b94addaf..2719e6d5 100644
--- a/lib/docusign_esign/models/envelope_id.rb
+++ b/lib/docusign_esign/models/envelope_id.rb
@@ -62,6 +62,9 @@ class EnvelopeId
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -315,6 +318,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -415,6 +419,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -568,6 +573,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -917,6 +926,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1006,7 +1016,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/envelopes_share_permission_request.rb b/lib/docusign_esign/models/envelopes_share_permission_request.rb
new file mode 100644
index 00000000..0b81e721
--- /dev/null
+++ b/lib/docusign_esign/models/envelopes_share_permission_request.rb
@@ -0,0 +1,194 @@
+=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 EnvelopesSharePermissionRequest
+ #
+ attr_accessor :custom_message
+
+ #
+ attr_accessor :permission
+
+ # Attribute mapping from ruby-style variable name to JSON key.
+ def self.attribute_map
+ {
+ :'custom_message' => :'customMessage',
+ :'permission' => :'permission'
+ }
+ end
+
+ # Attribute type mapping.
+ def self.swagger_types
+ {
+ :'custom_message' => :'String',
+ :'permission' => :'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?(:'customMessage')
+ self.custom_message = attributes[:'customMessage']
+ end
+
+ if attributes.has_key?(:'permission')
+ self.permission = attributes[:'permission']
+ 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 &&
+ custom_message == o.custom_message &&
+ permission == o.permission
+ 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
+ [custom_message, permission].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/envelopes_share_request.rb b/lib/docusign_esign/models/envelopes_share_request.rb
new file mode 100644
index 00000000..140d0be5
--- /dev/null
+++ b/lib/docusign_esign/models/envelopes_share_request.rb
@@ -0,0 +1,204 @@
+=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 EnvelopesShareRequest
+ #
+ attr_accessor :agent_user
+
+ #
+ attr_accessor :custom_message
+
+ #
+ attr_accessor :permission
+
+ # Attribute mapping from ruby-style variable name to JSON key.
+ def self.attribute_map
+ {
+ :'agent_user' => :'agentUser',
+ :'custom_message' => :'customMessage',
+ :'permission' => :'permission'
+ }
+ end
+
+ # Attribute type mapping.
+ def self.swagger_types
+ {
+ :'agent_user' => :'AuthorizationUser',
+ :'custom_message' => :'String',
+ :'permission' => :'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?(:'agentUser')
+ self.agent_user = attributes[:'agentUser']
+ end
+
+ if attributes.has_key?(:'customMessage')
+ self.custom_message = attributes[:'customMessage']
+ end
+
+ if attributes.has_key?(:'permission')
+ self.permission = attributes[:'permission']
+ 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 &&
+ agent_user == o.agent_user &&
+ custom_message == o.custom_message &&
+ permission == o.permission
+ 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
+ [agent_user, custom_message, permission].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/envelopes_share_response.rb b/lib/docusign_esign/models/envelopes_share_response.rb
new file mode 100644
index 00000000..be5af71c
--- /dev/null
+++ b/lib/docusign_esign/models/envelopes_share_response.rb
@@ -0,0 +1,264 @@
+=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 EnvelopesShareResponse
+ #
+ attr_accessor :agent_user
+
+ #
+ attr_accessor :created_timestamp
+
+ # The envelope ID of the envelope status that failed to post.
+ attr_accessor :envelope_id
+
+ # Array or errors.
+ attr_accessor :error_details
+
+ #
+ attr_accessor :modified_timestamp
+
+ #
+ attr_accessor :permission
+
+ #
+ attr_accessor :sender_info
+
+ #
+ attr_accessor :share_id
+
+ #
+ attr_accessor :subject
+
+ # Attribute mapping from ruby-style variable name to JSON key.
+ def self.attribute_map
+ {
+ :'agent_user' => :'agentUser',
+ :'created_timestamp' => :'createdTimestamp',
+ :'envelope_id' => :'envelopeId',
+ :'error_details' => :'errorDetails',
+ :'modified_timestamp' => :'modifiedTimestamp',
+ :'permission' => :'permission',
+ :'sender_info' => :'senderInfo',
+ :'share_id' => :'shareId',
+ :'subject' => :'subject'
+ }
+ end
+
+ # Attribute type mapping.
+ def self.swagger_types
+ {
+ :'agent_user' => :'AuthorizationUser',
+ :'created_timestamp' => :'String',
+ :'envelope_id' => :'String',
+ :'error_details' => :'ErrorDetails',
+ :'modified_timestamp' => :'String',
+ :'permission' => :'String',
+ :'sender_info' => :'AuthorizationUser',
+ :'share_id' => :'String',
+ :'subject' => :'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?(:'agentUser')
+ self.agent_user = attributes[:'agentUser']
+ end
+
+ if attributes.has_key?(:'createdTimestamp')
+ self.created_timestamp = attributes[:'createdTimestamp']
+ end
+
+ if attributes.has_key?(:'envelopeId')
+ self.envelope_id = attributes[:'envelopeId']
+ end
+
+ if attributes.has_key?(:'errorDetails')
+ self.error_details = attributes[:'errorDetails']
+ end
+
+ if attributes.has_key?(:'modifiedTimestamp')
+ self.modified_timestamp = attributes[:'modifiedTimestamp']
+ end
+
+ if attributes.has_key?(:'permission')
+ self.permission = attributes[:'permission']
+ end
+
+ if attributes.has_key?(:'senderInfo')
+ self.sender_info = attributes[:'senderInfo']
+ end
+
+ if attributes.has_key?(:'shareId')
+ self.share_id = attributes[:'shareId']
+ end
+
+ if attributes.has_key?(:'subject')
+ self.subject = attributes[:'subject']
+ 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 &&
+ agent_user == o.agent_user &&
+ created_timestamp == o.created_timestamp &&
+ envelope_id == o.envelope_id &&
+ error_details == o.error_details &&
+ modified_timestamp == o.modified_timestamp &&
+ permission == o.permission &&
+ sender_info == o.sender_info &&
+ share_id == o.share_id &&
+ subject == o.subject
+ 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
+ [agent_user, created_timestamp, envelope_id, error_details, modified_timestamp, permission, sender_info, share_id, subject].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/envelopes_shares_request.rb b/lib/docusign_esign/models/envelopes_shares_request.rb
index 8ab3a07e..8d9125f5 100644
--- a/lib/docusign_esign/models/envelopes_shares_request.rb
+++ b/lib/docusign_esign/models/envelopes_shares_request.rb
@@ -26,7 +26,7 @@ def self.attribute_map
# Attribute type mapping.
def self.swagger_types
{
- :'shares' => :'Array'
+ :'shares' => :'Array'
}
end
diff --git a/lib/docusign_esign/models/envelopes_shares_response.rb b/lib/docusign_esign/models/envelopes_shares_response.rb
index d059a373..a70ed6e4 100644
--- a/lib/docusign_esign/models/envelopes_shares_response.rb
+++ b/lib/docusign_esign/models/envelopes_shares_response.rb
@@ -26,7 +26,7 @@ def self.attribute_map
# Attribute type mapping.
def self.swagger_types
{
- :'shares' => :'Array'
+ :'shares' => :'Array'
}
end
diff --git a/lib/docusign_esign/models/first_name.rb b/lib/docusign_esign/models/first_name.rb
index fb1383b3..435b0d15 100644
--- a/lib/docusign_esign/models/first_name.rb
+++ b/lib/docusign_esign/models/first_name.rb
@@ -62,6 +62,9 @@ class FirstName
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -321,6 +324,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -423,6 +427,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -578,6 +583,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -935,6 +944,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1026,7 +1036,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/formula_tab.rb b/lib/docusign_esign/models/formula_tab.rb
index 6d2c7fcc..2c32a99d 100644
--- a/lib/docusign_esign/models/formula_tab.rb
+++ b/lib/docusign_esign/models/formula_tab.rb
@@ -62,6 +62,9 @@ class FormulaTab
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -426,6 +429,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -563,6 +567,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -753,6 +758,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1250,6 +1259,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1376,7 +1386,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, formula, formula_metadata, height, height_metadata, hidden, hidden_metadata, is_payment_amount, is_payment_amount_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, payment_details, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, round_decimal_places, round_decimal_places_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, formula, formula_metadata, height, height_metadata, hidden, hidden_metadata, is_payment_amount, is_payment_amount_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, payment_details, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, round_decimal_places, round_decimal_places_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/full_name.rb b/lib/docusign_esign/models/full_name.rb
index 6f704ca9..6497585d 100644
--- a/lib/docusign_esign/models/full_name.rb
+++ b/lib/docusign_esign/models/full_name.rb
@@ -62,6 +62,9 @@ class FullName
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -321,6 +324,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -423,6 +427,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -578,6 +583,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -935,6 +944,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1026,7 +1036,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/group_user_info.rb b/lib/docusign_esign/models/group_user_info.rb
new file mode 100644
index 00000000..a28387f4
--- /dev/null
+++ b/lib/docusign_esign/models/group_user_info.rb
@@ -0,0 +1,274 @@
+=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 GroupUserInfo
+ #
+ attr_accessor :activation_access_code
+
+ #
+ attr_accessor :email
+
+ # Array or errors.
+ attr_accessor :error_details
+
+ #
+ attr_accessor :login_status
+
+ #
+ attr_accessor :send_activation_email
+
+ #
+ attr_accessor :uri
+
+ #
+ attr_accessor :user_id
+
+ #
+ attr_accessor :user_name
+
+ #
+ attr_accessor :user_status
+
+ #
+ attr_accessor :user_type
+
+ # Attribute mapping from ruby-style variable name to JSON key.
+ def self.attribute_map
+ {
+ :'activation_access_code' => :'activationAccessCode',
+ :'email' => :'email',
+ :'error_details' => :'errorDetails',
+ :'login_status' => :'loginStatus',
+ :'send_activation_email' => :'sendActivationEmail',
+ :'uri' => :'uri',
+ :'user_id' => :'userId',
+ :'user_name' => :'userName',
+ :'user_status' => :'userStatus',
+ :'user_type' => :'userType'
+ }
+ end
+
+ # Attribute type mapping.
+ def self.swagger_types
+ {
+ :'activation_access_code' => :'String',
+ :'email' => :'String',
+ :'error_details' => :'ErrorDetails',
+ :'login_status' => :'String',
+ :'send_activation_email' => :'String',
+ :'uri' => :'String',
+ :'user_id' => :'String',
+ :'user_name' => :'String',
+ :'user_status' => :'String',
+ :'user_type' => :'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?(:'activationAccessCode')
+ self.activation_access_code = attributes[:'activationAccessCode']
+ end
+
+ if attributes.has_key?(:'email')
+ self.email = attributes[:'email']
+ end
+
+ if attributes.has_key?(:'errorDetails')
+ self.error_details = attributes[:'errorDetails']
+ end
+
+ if attributes.has_key?(:'loginStatus')
+ self.login_status = attributes[:'loginStatus']
+ end
+
+ if attributes.has_key?(:'sendActivationEmail')
+ self.send_activation_email = attributes[:'sendActivationEmail']
+ end
+
+ if attributes.has_key?(:'uri')
+ self.uri = attributes[:'uri']
+ end
+
+ if attributes.has_key?(:'userId')
+ self.user_id = attributes[:'userId']
+ end
+
+ if attributes.has_key?(:'userName')
+ self.user_name = attributes[:'userName']
+ end
+
+ if attributes.has_key?(:'userStatus')
+ self.user_status = attributes[:'userStatus']
+ end
+
+ if attributes.has_key?(:'userType')
+ self.user_type = attributes[:'userType']
+ 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 &&
+ activation_access_code == o.activation_access_code &&
+ email == o.email &&
+ error_details == o.error_details &&
+ login_status == o.login_status &&
+ send_activation_email == o.send_activation_email &&
+ uri == o.uri &&
+ user_id == o.user_id &&
+ user_name == o.user_name &&
+ user_status == o.user_status &&
+ user_type == o.user_type
+ 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
+ [activation_access_code, email, error_details, login_status, send_activation_email, uri, user_id, user_name, user_status, user_type].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/group_users_response.rb b/lib/docusign_esign/models/group_users_response.rb
new file mode 100644
index 00000000..ce1fa78f
--- /dev/null
+++ b/lib/docusign_esign/models/group_users_response.rb
@@ -0,0 +1,246 @@
+=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 GroupUsersResponse
+ # The last position in the result set.
+ attr_accessor :end_position
+
+ # The URI to the next chunk of records based on the search request. If the endPosition is the entire results of the search, this is null.
+ attr_accessor :next_uri
+
+ # The postal code for the billing address.
+ attr_accessor :previous_uri
+
+ # The number of results returned in this response.
+ attr_accessor :result_set_size
+
+ # Starting position of the current result set.
+ attr_accessor :start_position
+
+ # The total number of items available in the result set. This will always be greater than or equal to the value of the property returning the results in the in the response.
+ attr_accessor :total_set_size
+
+ #
+ attr_accessor :users
+
+ # Attribute mapping from ruby-style variable name to JSON key.
+ def self.attribute_map
+ {
+ :'end_position' => :'endPosition',
+ :'next_uri' => :'nextUri',
+ :'previous_uri' => :'previousUri',
+ :'result_set_size' => :'resultSetSize',
+ :'start_position' => :'startPosition',
+ :'total_set_size' => :'totalSetSize',
+ :'users' => :'users'
+ }
+ end
+
+ # Attribute type mapping.
+ def self.swagger_types
+ {
+ :'end_position' => :'String',
+ :'next_uri' => :'String',
+ :'previous_uri' => :'String',
+ :'result_set_size' => :'String',
+ :'start_position' => :'String',
+ :'total_set_size' => :'String',
+ :'users' => :'Array'
+ }
+ 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?(:'endPosition')
+ self.end_position = attributes[:'endPosition']
+ end
+
+ if attributes.has_key?(:'nextUri')
+ self.next_uri = attributes[:'nextUri']
+ end
+
+ if attributes.has_key?(:'previousUri')
+ self.previous_uri = attributes[:'previousUri']
+ end
+
+ if attributes.has_key?(:'resultSetSize')
+ self.result_set_size = attributes[:'resultSetSize']
+ end
+
+ if attributes.has_key?(:'startPosition')
+ self.start_position = attributes[:'startPosition']
+ end
+
+ if attributes.has_key?(:'totalSetSize')
+ self.total_set_size = attributes[:'totalSetSize']
+ end
+
+ if attributes.has_key?(:'users')
+ if (value = attributes[:'users']).is_a?(Array)
+ self.users = value
+ end
+ 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 &&
+ end_position == o.end_position &&
+ next_uri == o.next_uri &&
+ previous_uri == o.previous_uri &&
+ result_set_size == o.result_set_size &&
+ start_position == o.start_position &&
+ total_set_size == o.total_set_size &&
+ users == o.users
+ 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
+ [end_position, next_uri, previous_uri, result_set_size, start_position, total_set_size, users].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/initial_here.rb b/lib/docusign_esign/models/initial_here.rb
index 6848c996..c0778ee8 100644
--- a/lib/docusign_esign/models/initial_here.rb
+++ b/lib/docusign_esign/models/initial_here.rb
@@ -62,6 +62,9 @@ class InitialHere
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -291,6 +294,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -383,6 +387,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -528,6 +533,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -845,6 +854,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -926,7 +936,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, hand_draw_required, height, height_metadata, merge_field, merge_field_xml, name, name_metadata, optional, optional_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, scale_value, scale_value_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, hand_draw_required, height, height_metadata, merge_field, merge_field_xml, name, name_metadata, optional, optional_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, scale_value, scale_value_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/last_name.rb b/lib/docusign_esign/models/last_name.rb
index 498e257a..ee71662e 100644
--- a/lib/docusign_esign/models/last_name.rb
+++ b/lib/docusign_esign/models/last_name.rb
@@ -62,6 +62,9 @@ class LastName
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -321,6 +324,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -423,6 +427,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -578,6 +583,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -935,6 +944,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1026,7 +1036,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/list.rb b/lib/docusign_esign/models/list.rb
index ff54ede4..74621ecd 100644
--- a/lib/docusign_esign/models/list.rb
+++ b/lib/docusign_esign/models/list.rb
@@ -62,6 +62,9 @@ class List
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -372,6 +375,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -491,6 +495,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -663,6 +668,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1090,6 +1099,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1198,7 +1208,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, list_items, list_selected_value, list_selected_value_metadata, locale_policy, locked, locked_metadata, merge_field, merge_field_xml, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, list_items, list_selected_value, list_selected_value_metadata, locale_policy, locked, locked_metadata, merge_field, merge_field_xml, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/notarize.rb b/lib/docusign_esign/models/notarize.rb
index c1486b6a..a77573bf 100644
--- a/lib/docusign_esign/models/notarize.rb
+++ b/lib/docusign_esign/models/notarize.rb
@@ -62,6 +62,9 @@ class Notarize
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -276,6 +279,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -363,6 +367,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -503,6 +508,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -800,6 +809,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -876,7 +886,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, locked, locked_metadata, merge_field, merge_field_xml, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, locked, locked_metadata, merge_field, merge_field_xml, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/notary_seal.rb b/lib/docusign_esign/models/notary_seal.rb
index 28b7fb24..1cf14da0 100644
--- a/lib/docusign_esign/models/notary_seal.rb
+++ b/lib/docusign_esign/models/notary_seal.rb
@@ -62,6 +62,9 @@ class NotarySeal
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -282,6 +285,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -371,6 +375,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -513,6 +518,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -818,6 +827,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -896,7 +906,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, scale_value, scale_value_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, scale_value, scale_value_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/note.rb b/lib/docusign_esign/models/note.rb
index b9399d7a..8783c8ca 100644
--- a/lib/docusign_esign/models/note.rb
+++ b/lib/docusign_esign/models/note.rb
@@ -62,6 +62,9 @@ class Note
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -327,6 +330,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -431,6 +435,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -588,6 +593,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -953,6 +962,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1046,7 +1056,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, shared, shared_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, shared, shared_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/number.rb b/lib/docusign_esign/models/number.rb
index f29b8a7a..68ccc6c9 100644
--- a/lib/docusign_esign/models/number.rb
+++ b/lib/docusign_esign/models/number.rb
@@ -62,6 +62,9 @@ class Number
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -411,6 +414,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -543,6 +547,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -728,6 +733,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1205,6 +1214,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1326,7 +1336,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, formula, formula_metadata, height, height_metadata, is_payment_amount, is_payment_amount_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, formula, formula_metadata, height, height_metadata, is_payment_amount, is_payment_amount_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/numerical.rb b/lib/docusign_esign/models/numerical.rb
index 4efaeade..a3af5630 100644
--- a/lib/docusign_esign/models/numerical.rb
+++ b/lib/docusign_esign/models/numerical.rb
@@ -61,6 +61,9 @@ class Numerical
#
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -401,6 +404,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -530,6 +534,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -712,6 +717,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1177,6 +1186,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1295,7 +1305,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, max_numerical_value, merge_field, merge_field_xml, min_numerical_value, name, name_metadata, numerical_value, original_numerical_value, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_type, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, max_numerical_value, merge_field, merge_field_xml, min_numerical_value, name, name_metadata, numerical_value, original_numerical_value, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_type, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/phone_number.rb b/lib/docusign_esign/models/phone_number.rb
index db904919..548b9a44 100644
--- a/lib/docusign_esign/models/phone_number.rb
+++ b/lib/docusign_esign/models/phone_number.rb
@@ -62,6 +62,9 @@ class PhoneNumber
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -357,6 +360,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -471,6 +475,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -638,6 +643,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1043,6 +1052,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1146,7 +1156,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/poly_line_overlay.rb b/lib/docusign_esign/models/poly_line_overlay.rb
index af6b9d7d..802cccac 100644
--- a/lib/docusign_esign/models/poly_line_overlay.rb
+++ b/lib/docusign_esign/models/poly_line_overlay.rb
@@ -62,6 +62,9 @@ class PolyLineOverlay
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -291,6 +294,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -383,6 +387,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -528,6 +533,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -847,6 +856,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -928,7 +938,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, graphics_context, height, height_metadata, locked, locked_metadata, merge_field, merge_field_xml, overlay_type, overlay_type_metadata, page_number, page_number_metadata, poly_lines, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, shared, shared_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, graphics_context, height, height_metadata, locked, locked_metadata, merge_field, merge_field_xml, overlay_type, overlay_type_metadata, page_number, page_number_metadata, poly_lines, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, shared, shared_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/radio.rb b/lib/docusign_esign/models/radio.rb
index d6439c55..655629f2 100644
--- a/lib/docusign_esign/models/radio.rb
+++ b/lib/docusign_esign/models/radio.rb
@@ -56,6 +56,9 @@ class Radio
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -208,6 +211,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -273,6 +277,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -385,6 +390,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -598,6 +607,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -654,7 +664,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, connected_object_details, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, italic, italic_metadata, locked, locked_metadata, merge_field_xml, page_number, page_number_metadata, required, required_metadata, selected, selected_metadata, status, status_metadata, tab_fully_qualified_path, tab_id, tab_id_metadata, tab_order, tab_order_metadata, underline, underline_metadata, value, value_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, connected_object_details, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, italic, italic_metadata, locked, locked_metadata, merge_field_xml, page_number, page_number_metadata, required, required_metadata, selected, selected_metadata, status, status_metadata, tab_fully_qualified_path, tab_id, tab_id_metadata, tab_order, tab_order_metadata, underline, underline_metadata, value, value_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/sender_company.rb b/lib/docusign_esign/models/sender_company.rb
index 1554eace..218aed16 100644
--- a/lib/docusign_esign/models/sender_company.rb
+++ b/lib/docusign_esign/models/sender_company.rb
@@ -61,6 +61,9 @@ class SenderCompany
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -320,6 +323,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -422,6 +426,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -577,6 +582,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -934,6 +943,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1025,7 +1035,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/sender_name.rb b/lib/docusign_esign/models/sender_name.rb
index ba39b1a9..cdee7809 100644
--- a/lib/docusign_esign/models/sender_name.rb
+++ b/lib/docusign_esign/models/sender_name.rb
@@ -61,6 +61,9 @@ class SenderName
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -320,6 +323,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -422,6 +426,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -577,6 +582,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -934,6 +943,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1025,7 +1035,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, name, name_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/sign_here.rb b/lib/docusign_esign/models/sign_here.rb
index f53829b0..6d0852c3 100644
--- a/lib/docusign_esign/models/sign_here.rb
+++ b/lib/docusign_esign/models/sign_here.rb
@@ -62,6 +62,9 @@ class SignHere
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -303,6 +306,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -399,6 +403,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -548,6 +553,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -881,6 +890,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -966,7 +976,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, hand_draw_required, height, height_metadata, is_seal_sign_tab, merge_field, merge_field_xml, name, name_metadata, optional, optional_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, scale_value, scale_value_metadata, smart_contract_information, source, stamp, stamp_type, stamp_type_metadata, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, hand_draw_required, height, height_metadata, is_seal_sign_tab, merge_field, merge_field_xml, name, name_metadata, optional, optional_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, scale_value, scale_value_metadata, smart_contract_information, source, stamp, stamp_type, stamp_type_metadata, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/signer_attachment.rb b/lib/docusign_esign/models/signer_attachment.rb
index 40a64d43..9eb5e33f 100644
--- a/lib/docusign_esign/models/signer_attachment.rb
+++ b/lib/docusign_esign/models/signer_attachment.rb
@@ -62,6 +62,9 @@ class SignerAttachment
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -291,6 +294,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -383,6 +387,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -528,6 +533,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -845,6 +854,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -926,7 +936,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, hand_draw_required, height, height_metadata, merge_field, merge_field_xml, name, name_metadata, optional, optional_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, scale_value, scale_value_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, hand_draw_required, height, height_metadata, merge_field, merge_field_xml, name, name_metadata, optional, optional_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, scale_value, scale_value_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/smart_section.rb b/lib/docusign_esign/models/smart_section.rb
index 8a5caf94..0995c831 100644
--- a/lib/docusign_esign/models/smart_section.rb
+++ b/lib/docusign_esign/models/smart_section.rb
@@ -61,6 +61,9 @@ class SmartSection
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -308,6 +311,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -406,6 +410,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -557,6 +562,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -898,6 +907,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -985,7 +995,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, case_sensitive, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, display_settings, document_id, document_id_metadata, end_anchor, end_position, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, locked, locked_metadata, merge_field, merge_field_xml, overlay_type, overlay_type_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, remove_end_anchor, remove_start_anchor, shared, shared_metadata, smart_contract_information, source, start_anchor, start_position, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, case_sensitive, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, display_settings, document_id, document_id_metadata, end_anchor, end_position, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, locked, locked_metadata, merge_field, merge_field_xml, overlay_type, overlay_type_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, remove_end_anchor, remove_start_anchor, shared, shared_metadata, smart_contract_information, source, start_anchor, start_position, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/ssn.rb b/lib/docusign_esign/models/ssn.rb
index 5b6a329f..4e1539dd 100644
--- a/lib/docusign_esign/models/ssn.rb
+++ b/lib/docusign_esign/models/ssn.rb
@@ -62,6 +62,9 @@ class Ssn
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -399,6 +402,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -527,6 +531,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -708,6 +713,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1169,6 +1178,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1286,7 +1296,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/tab_group.rb b/lib/docusign_esign/models/tab_group.rb
index e3df31f0..c5489f89 100644
--- a/lib/docusign_esign/models/tab_group.rb
+++ b/lib/docusign_esign/models/tab_group.rb
@@ -61,6 +61,9 @@ class TabGroup
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -299,6 +302,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -394,6 +398,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -542,6 +547,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -871,6 +880,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -955,7 +965,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, group_label, group_label_metadata, group_rule, group_rule_metadata, height, height_metadata, maximum_allowed, maximum_allowed_metadata, merge_field, merge_field_xml, minimum_required, minimum_required_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_order, tab_order_metadata, tab_scope, tab_scope_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, validation_message, validation_message_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, group_label, group_label_metadata, group_rule, group_rule_metadata, height, height_metadata, maximum_allowed, maximum_allowed_metadata, merge_field, merge_field_xml, minimum_required, minimum_required_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_order, tab_order_metadata, tab_scope, tab_scope_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, validation_message, validation_message_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/text.rb b/lib/docusign_esign/models/text.rb
index f36025c0..aaedadd1 100644
--- a/lib/docusign_esign/models/text.rb
+++ b/lib/docusign_esign/models/text.rb
@@ -62,6 +62,9 @@ class Text
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -411,6 +414,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -543,6 +547,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -728,6 +733,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1205,6 +1214,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1326,7 +1336,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, formula, formula_metadata, height, height_metadata, is_payment_amount, is_payment_amount_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, formula, formula_metadata, height, height_metadata, is_payment_amount, is_payment_amount_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/title.rb b/lib/docusign_esign/models/title.rb
index 908cac03..d7ea0117 100644
--- a/lib/docusign_esign/models/title.rb
+++ b/lib/docusign_esign/models/title.rb
@@ -62,6 +62,9 @@ class Title
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -357,6 +360,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -471,6 +475,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -638,6 +643,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1043,6 +1052,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1146,7 +1156,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/view.rb b/lib/docusign_esign/models/view.rb
index a87a3fc2..36e890ae 100644
--- a/lib/docusign_esign/models/view.rb
+++ b/lib/docusign_esign/models/view.rb
@@ -62,6 +62,9 @@ class View
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -324,6 +327,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -427,6 +431,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -583,6 +588,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -944,6 +953,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1036,7 +1046,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, button_text, button_text_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, required_read, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, button_text, button_text_metadata, caption, caption_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, merge_field, merge_field_xml, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, required, required_metadata, required_read, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/models/zip.rb b/lib/docusign_esign/models/zip.rb
index 9f726199..72cd588a 100644
--- a/lib/docusign_esign/models/zip.rb
+++ b/lib/docusign_esign/models/zip.rb
@@ -62,6 +62,9 @@ class Zip
# Reserved for DocuSign.
attr_accessor :anchor_tab_processor_version_metadata
+ #
+ attr_accessor :anchor_tab_scope
+
# Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches.
attr_accessor :anchor_units
@@ -405,6 +408,7 @@ def self.attribute_map
:'anchor_string_metadata' => :'anchorStringMetadata',
:'anchor_tab_processor_version' => :'anchorTabProcessorVersion',
:'anchor_tab_processor_version_metadata' => :'anchorTabProcessorVersionMetadata',
+ :'anchor_tab_scope' => :'anchorTabScope',
:'anchor_units' => :'anchorUnits',
:'anchor_units_metadata' => :'anchorUnitsMetadata',
:'anchor_x_offset' => :'anchorXOffset',
@@ -535,6 +539,7 @@ def self.swagger_types
:'anchor_string_metadata' => :'PropertyMetadata',
:'anchor_tab_processor_version' => :'String',
:'anchor_tab_processor_version_metadata' => :'PropertyMetadata',
+ :'anchor_tab_scope' => :'String',
:'anchor_units' => :'String',
:'anchor_units_metadata' => :'PropertyMetadata',
:'anchor_x_offset' => :'String',
@@ -718,6 +723,10 @@ def initialize(attributes = {})
self.anchor_tab_processor_version_metadata = attributes[:'anchorTabProcessorVersionMetadata']
end
+ if attributes.has_key?(:'anchorTabScope')
+ self.anchor_tab_scope = attributes[:'anchorTabScope']
+ end
+
if attributes.has_key?(:'anchorUnits')
self.anchor_units = attributes[:'anchorUnits']
end
@@ -1187,6 +1196,7 @@ def ==(o)
anchor_string_metadata == o.anchor_string_metadata &&
anchor_tab_processor_version == o.anchor_tab_processor_version &&
anchor_tab_processor_version_metadata == o.anchor_tab_processor_version_metadata &&
+ anchor_tab_scope == o.anchor_tab_scope &&
anchor_units == o.anchor_units &&
anchor_units_metadata == o.anchor_units_metadata &&
anchor_x_offset == o.anchor_x_offset &&
@@ -1306,7 +1316,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
- [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, use_dash4, use_dash4_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
+ [agreement_attribute, agreement_attribute_locked, anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_tab_scope, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, caption, caption_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, connected_object_details, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, extension_data, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_fully_qualified_path, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, use_dash4, use_dash4_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, warning_details, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
end
# Builds the object from hash
diff --git a/lib/docusign_esign/version.rb b/lib/docusign_esign/version.rb
index 53a23fa3..802d889e 100644
--- a/lib/docusign_esign/version.rb
+++ b/lib/docusign_esign/version.rb
@@ -10,5 +10,5 @@
=end
module DocuSign_eSign
- VERSION = '6.0.0'
+ VERSION = '10.0.0.rc1'
end