docusign_esign 3.13.0.rc1 → 3.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 9d6c3eb6f9313bf186461f8d379beb9310eb54da9d2104b0be8ed3a33c98a998
4
+ data.tar.gz: 140c92b8d199f8f5ef54f3f0061033282cc98d7062612a8cbf11239aed62d2e7
5
+ SHA512:
6
+ metadata.gz: '08f0073cb69c71d78603f1526e93afc6e9f51ef16cd58006eb1694a6c30e46d0e547d0aab344260af8aa971729540a07423afd74e7be8a4778a56d80553d0895'
7
+ data.tar.gz: 630217d52123fa8fa6513a711ff5b78be2d134f5ed38130c8f8f7c85e0ec3fd472d1d3c755410d2f4b1b7fe1d8162cb49fb2ff9b0f047ae7ed153015a43de42d
data/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
3
3
 
4
4
  See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
5
5
 
6
+ ## [3.13.0] - ESignature API v2.1-21.3.02.00 - 2021-10-29
7
+ ### Changed
8
+ - Added support for version v2.1-21.3.02.00 of the DocuSign ESignature API.
9
+ - Updated the SDK release version.
10
+
11
+
6
12
  ## [3.13.0.rc1] - ESignature API v2.1-21.3.00.00 - 2021-09-21
7
13
  ### Changed
8
14
  - Added support for version v2.1-21.3.00.00 of the DocuSign ESignature API.
@@ -3362,7 +3362,7 @@ module DocuSign_eSign
3362
3362
  # Put one branding logo.
3363
3363
  #
3364
3364
  # @param account_id The external account number (int) or account ID GUID.
3365
- # @param brand_id The id of the brand.
3365
+ # @param brand_id The ID of the brand.
3366
3366
  # @param logo_type The type of logo. Valid values are: - `primary` - `secondary` - `email`
3367
3367
  # @param logo_file_bytes Brand logo binary Stream. Supported formats: JPG, GIF, PNG. Maximum file size: 300 KB. Recommended dimensions: 296 x 76 pixels (larger images will be resized). Changes may take up to one hour to display in all places
3368
3368
  # @return [nil]
@@ -3374,7 +3374,7 @@ module DocuSign_eSign
3374
3374
  # Put one branding logo.
3375
3375
  #
3376
3376
  # @param account_id The external account number (int) or account ID GUID.
3377
- # @param brand_id The id of the brand.
3377
+ # @param brand_id The ID of the brand.
3378
3378
  # @param logo_type The type of logo. Valid values are: - `primary` - `secondary` - `email`
3379
3379
  # @param logo_file_bytes Brand logo binary Stream. Supported formats: JPG, GIF, PNG. Maximum file size: 300 KB. Recommended dimensions: 296 x 76 pixels (larger images will be resized). Changes may take up to one hour to display in all places
3380
3380
  # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
@@ -3424,7 +3424,7 @@ module DocuSign_eSign
3424
3424
  # Uploads a branding resource file.
3425
3425
  #
3426
3426
  # @param account_id The external account number (int) or account ID GUID.
3427
- # @param brand_id The id of the brand.
3427
+ # @param brand_id The ID of the brand.
3428
3428
  # @param resource_content_type The type of brand resource file that you are updating. Valid values are: - `sending` - `signing` - `email` - `signing_captive`
3429
3429
  # @return [BrandResources]
3430
3430
  def update_brand_resources_by_content_type(account_id, brand_id, resource_content_type)
@@ -3435,7 +3435,7 @@ module DocuSign_eSign
3435
3435
  # Uploads a branding resource file.
3436
3436
  #
3437
3437
  # @param account_id The external account number (int) or account ID GUID.
3438
- # @param brand_id The id of the brand.
3438
+ # @param brand_id The ID of the brand.
3439
3439
  # @param resource_content_type The type of brand resource file that you are updating. Valid values are: - `sending` - `signing` - `email` - `signing_captive`
3440
3440
  # @return [Array<(BrandResources, Fixnum, Hash)>] BrandResources data, response status code and response headers
3441
3441
  def update_brand_resources_by_content_type_with_http_info(account_id, brand_id, resource_content_type)
@@ -209,17 +209,17 @@ module DocuSign_eSign
209
209
  # Deletes the Connect failure log information for the specified entry.
210
210
  # @param account_id The external account number (int) or account ID Guid.
211
211
  # @param failure_id The ID of the failed connect log entry.
212
- # @return [nil]
212
+ # @return [ConnectDeleteFailureResult]
213
213
  def delete_event_failure_log(account_id, failure_id)
214
- delete_event_failure_log_with_http_info(account_id, failure_id)
215
- return nil
214
+ data, _status_code, _headers = delete_event_failure_log_with_http_info(account_id, failure_id)
215
+ return data
216
216
  end
217
217
 
218
218
  # Deletes a Connect failure log entry.
219
219
  # Deletes the Connect failure log information for the specified entry.
220
220
  # @param account_id The external account number (int) or account ID Guid.
221
221
  # @param failure_id The ID of the failed connect log entry.
222
- # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
222
+ # @return [Array<(ConnectDeleteFailureResult, Fixnum, Hash)>] ConnectDeleteFailureResult data, response status code and response headers
223
223
  def delete_event_failure_log_with_http_info(account_id, failure_id)
224
224
  if @api_client.config.debugging
225
225
  @api_client.config.logger.debug "Calling API: ConnectApi.delete_event_failure_log ..."
@@ -250,7 +250,8 @@ module DocuSign_eSign
250
250
  :query_params => query_params,
251
251
  :form_params => form_params,
252
252
  :body => post_body,
253
- :auth_names => auth_names)
253
+ :auth_names => auth_names,
254
+ :return_type => 'ConnectDeleteFailureResult')
254
255
  if @api_client.config.debugging
255
256
  @api_client.config.logger.debug "API called: ConnectApi#delete_event_failure_log\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
256
257
  end
@@ -266,11 +266,31 @@ module DocuSign_eSign
266
266
 
267
267
  attr_accessor :allow_open_trust_signer_certificate_metadata
268
268
 
269
+ #
270
+ attr_accessor :allow_organization_docusign_monitor
271
+
272
+ attr_accessor :allow_organization_docusign_monitor_metadata
273
+
274
+ #
275
+ attr_accessor :allow_organization_domain_user_management
276
+
277
+ attr_accessor :allow_organization_domain_user_management_metadata
278
+
269
279
  #
270
280
  attr_accessor :allow_organizations
271
281
 
272
282
  attr_accessor :allow_organizations_metadata
273
283
 
284
+ #
285
+ attr_accessor :allow_organization_sso_management
286
+
287
+ attr_accessor :allow_organization_sso_management_metadata
288
+
289
+ #
290
+ attr_accessor :allow_organization_to_use_remote_notary
291
+
292
+ attr_accessor :allow_organization_to_use_remote_notary_metadata
293
+
274
294
  #
275
295
  attr_accessor :allow_payment_processing
276
296
 
@@ -924,6 +944,9 @@ module DocuSign_eSign
924
944
 
925
945
  attr_accessor :guided_forms_html_allowed_metadata
926
946
 
947
+ #
948
+ attr_accessor :has_recipient_connect_claimed_domain
949
+
927
950
  #
928
951
  attr_accessor :hide_account_address_in_co_c
929
952
 
@@ -1041,6 +1064,11 @@ module DocuSign_eSign
1041
1064
 
1042
1065
  attr_accessor :pki_sign_downloaded_pdf_docs_metadata
1043
1066
 
1067
+ #
1068
+ attr_accessor :read_only_mode
1069
+
1070
+ attr_accessor :read_only_mode_metadata
1071
+
1044
1072
  #
1045
1073
  attr_accessor :recipients_can_sign_offline
1046
1074
 
@@ -1517,8 +1545,16 @@ module DocuSign_eSign
1517
1545
  :'allow_offline_signing_metadata' => :'allowOfflineSigningMetadata',
1518
1546
  :'allow_open_trust_signer_certificate' => :'allowOpenTrustSignerCertificate',
1519
1547
  :'allow_open_trust_signer_certificate_metadata' => :'allowOpenTrustSignerCertificateMetadata',
1548
+ :'allow_organization_docusign_monitor' => :'allowOrganizationDocusignMonitor',
1549
+ :'allow_organization_docusign_monitor_metadata' => :'allowOrganizationDocusignMonitorMetadata',
1550
+ :'allow_organization_domain_user_management' => :'allowOrganizationDomainUserManagement',
1551
+ :'allow_organization_domain_user_management_metadata' => :'allowOrganizationDomainUserManagementMetadata',
1520
1552
  :'allow_organizations' => :'allowOrganizations',
1521
1553
  :'allow_organizations_metadata' => :'allowOrganizationsMetadata',
1554
+ :'allow_organization_sso_management' => :'allowOrganizationSsoManagement',
1555
+ :'allow_organization_sso_management_metadata' => :'allowOrganizationSsoManagementMetadata',
1556
+ :'allow_organization_to_use_remote_notary' => :'allowOrganizationToUseRemoteNotary',
1557
+ :'allow_organization_to_use_remote_notary_metadata' => :'allowOrganizationToUseRemoteNotaryMetadata',
1522
1558
  :'allow_payment_processing' => :'allowPaymentProcessing',
1523
1559
  :'allow_payment_processing_metadata' => :'allowPaymentProcessingMetadata',
1524
1560
  :'allow_personal_signer_certificate' => :'allowPersonalSignerCertificate',
@@ -1780,6 +1816,7 @@ module DocuSign_eSign
1780
1816
  :'fax_out_enabled_metadata' => :'faxOutEnabledMetadata',
1781
1817
  :'guided_forms_html_allowed' => :'guidedFormsHtmlAllowed',
1782
1818
  :'guided_forms_html_allowed_metadata' => :'guidedFormsHtmlAllowedMetadata',
1819
+ :'has_recipient_connect_claimed_domain' => :'hasRecipientConnectClaimedDomain',
1783
1820
  :'hide_account_address_in_co_c' => :'hideAccountAddressInCoC',
1784
1821
  :'hide_account_address_in_co_c_metadata' => :'hideAccountAddressInCoCMetadata',
1785
1822
  :'hide_pricing' => :'hidePricing',
@@ -1826,6 +1863,8 @@ module DocuSign_eSign
1826
1863
  :'phone_auth_recipient_may_provide_phone_number_metadata' => :'phoneAuthRecipientMayProvidePhoneNumberMetadata',
1827
1864
  :'pki_sign_downloaded_pdf_docs' => :'pkiSignDownloadedPDFDocs',
1828
1865
  :'pki_sign_downloaded_pdf_docs_metadata' => :'pkiSignDownloadedPDFDocsMetadata',
1866
+ :'read_only_mode' => :'readOnlyMode',
1867
+ :'read_only_mode_metadata' => :'readOnlyModeMetadata',
1829
1868
  :'recipients_can_sign_offline' => :'recipientsCanSignOffline',
1830
1869
  :'recipients_can_sign_offline_metadata' => :'recipientsCanSignOfflineMetadata',
1831
1870
  :'recipient_signing_auto_navigation_control' => :'recipientSigningAutoNavigationControl',
@@ -2081,8 +2120,16 @@ module DocuSign_eSign
2081
2120
  :'allow_offline_signing_metadata' => :'SettingsMetadata',
2082
2121
  :'allow_open_trust_signer_certificate' => :'String',
2083
2122
  :'allow_open_trust_signer_certificate_metadata' => :'SettingsMetadata',
2123
+ :'allow_organization_docusign_monitor' => :'String',
2124
+ :'allow_organization_docusign_monitor_metadata' => :'SettingsMetadata',
2125
+ :'allow_organization_domain_user_management' => :'String',
2126
+ :'allow_organization_domain_user_management_metadata' => :'SettingsMetadata',
2084
2127
  :'allow_organizations' => :'String',
2085
2128
  :'allow_organizations_metadata' => :'SettingsMetadata',
2129
+ :'allow_organization_sso_management' => :'String',
2130
+ :'allow_organization_sso_management_metadata' => :'SettingsMetadata',
2131
+ :'allow_organization_to_use_remote_notary' => :'String',
2132
+ :'allow_organization_to_use_remote_notary_metadata' => :'SettingsMetadata',
2086
2133
  :'allow_payment_processing' => :'String',
2087
2134
  :'allow_payment_processing_metadata' => :'SettingsMetadata',
2088
2135
  :'allow_personal_signer_certificate' => :'String',
@@ -2344,6 +2391,7 @@ module DocuSign_eSign
2344
2391
  :'fax_out_enabled_metadata' => :'SettingsMetadata',
2345
2392
  :'guided_forms_html_allowed' => :'String',
2346
2393
  :'guided_forms_html_allowed_metadata' => :'SettingsMetadata',
2394
+ :'has_recipient_connect_claimed_domain' => :'String',
2347
2395
  :'hide_account_address_in_co_c' => :'String',
2348
2396
  :'hide_account_address_in_co_c_metadata' => :'SettingsMetadata',
2349
2397
  :'hide_pricing' => :'String',
@@ -2390,6 +2438,8 @@ module DocuSign_eSign
2390
2438
  :'phone_auth_recipient_may_provide_phone_number_metadata' => :'SettingsMetadata',
2391
2439
  :'pki_sign_downloaded_pdf_docs' => :'String',
2392
2440
  :'pki_sign_downloaded_pdf_docs_metadata' => :'SettingsMetadata',
2441
+ :'read_only_mode' => :'String',
2442
+ :'read_only_mode_metadata' => :'SettingsMetadata',
2393
2443
  :'recipients_can_sign_offline' => :'String',
2394
2444
  :'recipients_can_sign_offline_metadata' => :'SettingsMetadata',
2395
2445
  :'recipient_signing_auto_navigation_control' => :'String',
@@ -2953,6 +3003,22 @@ module DocuSign_eSign
2953
3003
  self.allow_open_trust_signer_certificate_metadata = attributes[:'allowOpenTrustSignerCertificateMetadata']
2954
3004
  end
2955
3005
 
3006
+ if attributes.has_key?(:'allowOrganizationDocusignMonitor')
3007
+ self.allow_organization_docusign_monitor = attributes[:'allowOrganizationDocusignMonitor']
3008
+ end
3009
+
3010
+ if attributes.has_key?(:'allowOrganizationDocusignMonitorMetadata')
3011
+ self.allow_organization_docusign_monitor_metadata = attributes[:'allowOrganizationDocusignMonitorMetadata']
3012
+ end
3013
+
3014
+ if attributes.has_key?(:'allowOrganizationDomainUserManagement')
3015
+ self.allow_organization_domain_user_management = attributes[:'allowOrganizationDomainUserManagement']
3016
+ end
3017
+
3018
+ if attributes.has_key?(:'allowOrganizationDomainUserManagementMetadata')
3019
+ self.allow_organization_domain_user_management_metadata = attributes[:'allowOrganizationDomainUserManagementMetadata']
3020
+ end
3021
+
2956
3022
  if attributes.has_key?(:'allowOrganizations')
2957
3023
  self.allow_organizations = attributes[:'allowOrganizations']
2958
3024
  end
@@ -2961,6 +3027,22 @@ module DocuSign_eSign
2961
3027
  self.allow_organizations_metadata = attributes[:'allowOrganizationsMetadata']
2962
3028
  end
2963
3029
 
3030
+ if attributes.has_key?(:'allowOrganizationSsoManagement')
3031
+ self.allow_organization_sso_management = attributes[:'allowOrganizationSsoManagement']
3032
+ end
3033
+
3034
+ if attributes.has_key?(:'allowOrganizationSsoManagementMetadata')
3035
+ self.allow_organization_sso_management_metadata = attributes[:'allowOrganizationSsoManagementMetadata']
3036
+ end
3037
+
3038
+ if attributes.has_key?(:'allowOrganizationToUseRemoteNotary')
3039
+ self.allow_organization_to_use_remote_notary = attributes[:'allowOrganizationToUseRemoteNotary']
3040
+ end
3041
+
3042
+ if attributes.has_key?(:'allowOrganizationToUseRemoteNotaryMetadata')
3043
+ self.allow_organization_to_use_remote_notary_metadata = attributes[:'allowOrganizationToUseRemoteNotaryMetadata']
3044
+ end
3045
+
2964
3046
  if attributes.has_key?(:'allowPaymentProcessing')
2965
3047
  self.allow_payment_processing = attributes[:'allowPaymentProcessing']
2966
3048
  end
@@ -4005,6 +4087,10 @@ module DocuSign_eSign
4005
4087
  self.guided_forms_html_allowed_metadata = attributes[:'guidedFormsHtmlAllowedMetadata']
4006
4088
  end
4007
4089
 
4090
+ if attributes.has_key?(:'hasRecipientConnectClaimedDomain')
4091
+ self.has_recipient_connect_claimed_domain = attributes[:'hasRecipientConnectClaimedDomain']
4092
+ end
4093
+
4008
4094
  if attributes.has_key?(:'hideAccountAddressInCoC')
4009
4095
  self.hide_account_address_in_co_c = attributes[:'hideAccountAddressInCoC']
4010
4096
  end
@@ -4195,6 +4281,14 @@ module DocuSign_eSign
4195
4281
  self.pki_sign_downloaded_pdf_docs_metadata = attributes[:'pkiSignDownloadedPDFDocsMetadata']
4196
4282
  end
4197
4283
 
4284
+ if attributes.has_key?(:'readOnlyMode')
4285
+ self.read_only_mode = attributes[:'readOnlyMode']
4286
+ end
4287
+
4288
+ if attributes.has_key?(:'readOnlyModeMetadata')
4289
+ self.read_only_mode_metadata = attributes[:'readOnlyModeMetadata']
4290
+ end
4291
+
4198
4292
  if attributes.has_key?(:'recipientsCanSignOffline')
4199
4293
  self.recipients_can_sign_offline = attributes[:'recipientsCanSignOffline']
4200
4294
  end
@@ -4909,8 +5003,16 @@ module DocuSign_eSign
4909
5003
  allow_offline_signing_metadata == o.allow_offline_signing_metadata &&
4910
5004
  allow_open_trust_signer_certificate == o.allow_open_trust_signer_certificate &&
4911
5005
  allow_open_trust_signer_certificate_metadata == o.allow_open_trust_signer_certificate_metadata &&
5006
+ allow_organization_docusign_monitor == o.allow_organization_docusign_monitor &&
5007
+ allow_organization_docusign_monitor_metadata == o.allow_organization_docusign_monitor_metadata &&
5008
+ allow_organization_domain_user_management == o.allow_organization_domain_user_management &&
5009
+ allow_organization_domain_user_management_metadata == o.allow_organization_domain_user_management_metadata &&
4912
5010
  allow_organizations == o.allow_organizations &&
4913
5011
  allow_organizations_metadata == o.allow_organizations_metadata &&
5012
+ allow_organization_sso_management == o.allow_organization_sso_management &&
5013
+ allow_organization_sso_management_metadata == o.allow_organization_sso_management_metadata &&
5014
+ allow_organization_to_use_remote_notary == o.allow_organization_to_use_remote_notary &&
5015
+ allow_organization_to_use_remote_notary_metadata == o.allow_organization_to_use_remote_notary_metadata &&
4914
5016
  allow_payment_processing == o.allow_payment_processing &&
4915
5017
  allow_payment_processing_metadata == o.allow_payment_processing_metadata &&
4916
5018
  allow_personal_signer_certificate == o.allow_personal_signer_certificate &&
@@ -5172,6 +5274,7 @@ module DocuSign_eSign
5172
5274
  fax_out_enabled_metadata == o.fax_out_enabled_metadata &&
5173
5275
  guided_forms_html_allowed == o.guided_forms_html_allowed &&
5174
5276
  guided_forms_html_allowed_metadata == o.guided_forms_html_allowed_metadata &&
5277
+ has_recipient_connect_claimed_domain == o.has_recipient_connect_claimed_domain &&
5175
5278
  hide_account_address_in_co_c == o.hide_account_address_in_co_c &&
5176
5279
  hide_account_address_in_co_c_metadata == o.hide_account_address_in_co_c_metadata &&
5177
5280
  hide_pricing == o.hide_pricing &&
@@ -5218,6 +5321,8 @@ module DocuSign_eSign
5218
5321
  phone_auth_recipient_may_provide_phone_number_metadata == o.phone_auth_recipient_may_provide_phone_number_metadata &&
5219
5322
  pki_sign_downloaded_pdf_docs == o.pki_sign_downloaded_pdf_docs &&
5220
5323
  pki_sign_downloaded_pdf_docs_metadata == o.pki_sign_downloaded_pdf_docs_metadata &&
5324
+ read_only_mode == o.read_only_mode &&
5325
+ read_only_mode_metadata == o.read_only_mode_metadata &&
5221
5326
  recipients_can_sign_offline == o.recipients_can_sign_offline &&
5222
5327
  recipients_can_sign_offline_metadata == o.recipients_can_sign_offline_metadata &&
5223
5328
  recipient_signing_auto_navigation_control == o.recipient_signing_auto_navigation_control &&
@@ -5377,7 +5482,7 @@ module DocuSign_eSign
5377
5482
  # Calculates hash code according to all attributes.
5378
5483
  # @return [Fixnum] Hash code
5379
5484
  def hash
5380
- [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, 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_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_auto_nav_settings, allow_auto_nav_settings_metadata, allow_auto_tagging, allow_auto_tagging_metadata, allow_bulk_send, allow_bulk_send_metadata, allow_cd_withdraw, allow_cd_withdraw_metadata, allow_connect_http_listener_configs, 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_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_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_idv_level1, allow_idv_level1_metadata, allow_idv_level2, allow_idv_level2_metadata, allow_idv_level3, allow_idv_level3_metadata, allow_idv_platform, allow_idv_platform_metadata, allow_in_person, allow_in_person_metadata, allow_managed_stamps, allow_managed_stamps_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_open_trust_signer_certificate, allow_open_trust_signer_certificate_metadata, allow_organizations, allow_organizations_metadata, allow_payment_processing, allow_payment_processing_metadata, allow_personal_signer_certificate, allow_personal_signer_certificate_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_security_appliance, allow_security_appliance_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_users_to_access_directory, allow_users_to_access_directory_metadata, allow_value_insights, allow_value_insights_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_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, 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, 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, data_population_scope, data_population_scope_metadata, disable_auto_template_matching, disable_auto_template_matching_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, email_template_version, email_template_version_metadata, enable_access_code_generator, enable_access_code_generator_metadata, enable_advanced_payments, enable_advanced_payments_metadata, enable_advanced_power_forms, enable_advanced_power_forms_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_auto_nav, enable_auto_nav_metadata, enable_bcc_dummy_link, enable_bcc_dummy_link_metadata, enable_calculated_fields, enable_calculated_fields_metadata, enable_clickwraps, enable_clickwraps_metadata, enable_comments_history_download_in_signing, enable_comments_history_download_in_signing_metadata, enable_customer_satisfaction_metric_tracking, enable_customer_satisfaction_metric_tracking_metadata, enable_ds_pro, enable_ds_pro_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_esign_communities, enable_esign_communities_metadata, enable_id_fx_intuit_kba, enable_id_fx_intuit_kba_metadata, enable_in_browser_editor, enable_in_browser_editor_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_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_scheduled_release, enable_scheduled_release_metadata, enable_search, enable_search_metadata, enable_search_ui, enable_search_ui_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_extension_comments, enable_signing_extension_comments_metadata, enable_signing_extension_conversations, enable_signing_extension_conversations_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_social_id_login, enable_social_id_login_metadata, enable_strike_through, enable_strike_through_metadata, enable_transaction_point, enable_transaction_point_metadata, enable_vaulting, enable_vaulting_metadata, enable_witnessing, enable_witnessing_metadata, enforce_template_name_uniqueness, enforce_template_name_uniqueness_metadata, envelope_integration_allowed, envelope_integration_allowed_metadata, envelope_integration_enabled, envelope_integration_enabled_metadata, envelope_stamping_default_value, envelope_stamping_default_value_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, guided_forms_html_allowed, guided_forms_html_allowed_metadata, 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_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, linked_external_primary_accounts, maximum_signing_groups, maximum_signing_groups_metadata, maximum_users_per_signing_group, maximum_users_per_signing_group_metadata, max_number_of_custom_stamps, mobile_session_timeout, mobile_session_timeout_metadata, number_of_active_custom_stamps, opt_in_mobile_signing_v02, opt_in_mobile_signing_v02_metadata, 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, 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, recipients_can_sign_offline, recipients_can_sign_offline_metadata, recipient_signing_auto_navigation_control, recipient_signing_auto_navigation_control_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_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, 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_multi_app_groups_data, use_multi_app_groups_data_metadata, use_new_blob_for_pdf, use_new_blob_for_pdf_metadata, use_safe_signer_certificates, use_safe_signer_certificates_metadata, uses_api, uses_api_metadata, use_signature_provider_platform, use_signature_provider_platform_metadata, 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
5485
+ [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, 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_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_auto_nav_settings, allow_auto_nav_settings_metadata, allow_auto_tagging, allow_auto_tagging_metadata, allow_bulk_send, allow_bulk_send_metadata, allow_cd_withdraw, allow_cd_withdraw_metadata, allow_connect_http_listener_configs, 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_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_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_idv_level1, allow_idv_level1_metadata, allow_idv_level2, allow_idv_level2_metadata, allow_idv_level3, allow_idv_level3_metadata, allow_idv_platform, allow_idv_platform_metadata, allow_in_person, allow_in_person_metadata, allow_managed_stamps, allow_managed_stamps_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_open_trust_signer_certificate, allow_open_trust_signer_certificate_metadata, allow_organization_docusign_monitor, 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_remote_notary, allow_organization_to_use_remote_notary_metadata, allow_payment_processing, allow_payment_processing_metadata, allow_personal_signer_certificate, allow_personal_signer_certificate_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_security_appliance, allow_security_appliance_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_users_to_access_directory, allow_users_to_access_directory_metadata, allow_value_insights, allow_value_insights_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_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, 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, 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, data_population_scope, data_population_scope_metadata, disable_auto_template_matching, disable_auto_template_matching_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, email_template_version, email_template_version_metadata, enable_access_code_generator, enable_access_code_generator_metadata, enable_advanced_payments, enable_advanced_payments_metadata, enable_advanced_power_forms, enable_advanced_power_forms_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_auto_nav, enable_auto_nav_metadata, enable_bcc_dummy_link, enable_bcc_dummy_link_metadata, enable_calculated_fields, enable_calculated_fields_metadata, enable_clickwraps, enable_clickwraps_metadata, enable_comments_history_download_in_signing, enable_comments_history_download_in_signing_metadata, enable_customer_satisfaction_metric_tracking, enable_customer_satisfaction_metric_tracking_metadata, enable_ds_pro, enable_ds_pro_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_esign_communities, enable_esign_communities_metadata, enable_id_fx_intuit_kba, enable_id_fx_intuit_kba_metadata, enable_in_browser_editor, enable_in_browser_editor_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_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_scheduled_release, enable_scheduled_release_metadata, enable_search, enable_search_metadata, enable_search_ui, enable_search_ui_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_extension_comments, enable_signing_extension_comments_metadata, enable_signing_extension_conversations, enable_signing_extension_conversations_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_social_id_login, enable_social_id_login_metadata, enable_strike_through, enable_strike_through_metadata, enable_transaction_point, enable_transaction_point_metadata, enable_vaulting, enable_vaulting_metadata, enable_witnessing, enable_witnessing_metadata, enforce_template_name_uniqueness, enforce_template_name_uniqueness_metadata, envelope_integration_allowed, envelope_integration_allowed_metadata, envelope_integration_enabled, envelope_integration_enabled_metadata, envelope_stamping_default_value, envelope_stamping_default_value_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, guided_forms_html_allowed, guided_forms_html_allowed_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_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, linked_external_primary_accounts, maximum_signing_groups, maximum_signing_groups_metadata, maximum_users_per_signing_group, maximum_users_per_signing_group_metadata, max_number_of_custom_stamps, mobile_session_timeout, mobile_session_timeout_metadata, number_of_active_custom_stamps, opt_in_mobile_signing_v02, opt_in_mobile_signing_v02_metadata, 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, 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, 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_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, 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_multi_app_groups_data, use_multi_app_groups_data_metadata, use_new_blob_for_pdf, use_new_blob_for_pdf_metadata, use_safe_signer_certificates, use_safe_signer_certificates_metadata, uses_api, uses_api_metadata, use_signature_provider_platform, use_signature_provider_platform_metadata, 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
5381
5486
  end
5382
5487
 
5383
5488
  # Builds the object from hash
@@ -0,0 +1,174 @@
1
+ =begin
2
+ #DocuSign REST API
3
+
4
+ #The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
5
+
6
+ OpenAPI spec version: v2.1
7
+ Contact: devcenter@docusign.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ =end
11
+
12
+ require 'date'
13
+
14
+ module DocuSign_eSign
15
+ class ConnectDeleteFailureResult
16
+ # Attribute mapping from ruby-style variable name to JSON key.
17
+ def self.attribute_map
18
+ {
19
+ }
20
+ end
21
+
22
+ # Attribute type mapping.
23
+ def self.swagger_types
24
+ {
25
+ }
26
+ end
27
+
28
+ # Initializes the object
29
+ # @param [Hash] attributes Model attributes in the form of hash
30
+ def initialize(attributes = {})
31
+ return unless attributes.is_a?(Hash)
32
+
33
+ # convert string to symbol for hash key
34
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
35
+ end
36
+
37
+ # Show invalid properties with the reasons. Usually used together with valid?
38
+ # @return Array for valid properties with the reasons
39
+ def list_invalid_properties
40
+ invalid_properties = Array.new
41
+ invalid_properties
42
+ end
43
+
44
+ # Check to see if the all the properties in the model are valid
45
+ # @return true if the model is valid
46
+ def valid?
47
+ true
48
+ end
49
+
50
+ # Checks equality by comparing each attribute.
51
+ # @param [Object] Object to be compared
52
+ def ==(o)
53
+ return true if self.equal?(o)
54
+ self.class == o.class
55
+ end
56
+
57
+ # @see the `==` method
58
+ # @param [Object] Object to be compared
59
+ def eql?(o)
60
+ self == o
61
+ end
62
+
63
+ # Calculates hash code according to all attributes.
64
+ # @return [Fixnum] Hash code
65
+ def hash
66
+ [].hash
67
+ end
68
+
69
+ # Builds the object from hash
70
+ # @param [Hash] attributes Model attributes in the form of hash
71
+ # @return [Object] Returns the model itself
72
+ def build_from_hash(attributes)
73
+ return nil unless attributes.is_a?(Hash)
74
+ self.class.swagger_types.each_pair do |key, type|
75
+ if type =~ /\AArray<(.*)>/i
76
+ # check to ensure the input is an array given that the attribute
77
+ # is documented as an array but the input is not
78
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
79
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
80
+ end
81
+ elsif !attributes[self.class.attribute_map[key]].nil?
82
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
83
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
84
+ end
85
+
86
+ self
87
+ end
88
+
89
+ # Deserializes the data based on type
90
+ # @param string type Data type
91
+ # @param string value Value to be deserialized
92
+ # @return [Object] Deserialized data
93
+ def _deserialize(type, value)
94
+ case type.to_sym
95
+ when :DateTime
96
+ DateTime.parse(value)
97
+ when :Date
98
+ Date.parse(value)
99
+ when :String
100
+ value.to_s
101
+ when :Integer
102
+ value.to_i
103
+ when :Float
104
+ value.to_f
105
+ when :BOOLEAN
106
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
107
+ true
108
+ else
109
+ false
110
+ end
111
+ when :Object
112
+ # generic object (usually a Hash), return directly
113
+ value
114
+ when /\AArray<(?<inner_type>.+)>\z/
115
+ inner_type = Regexp.last_match[:inner_type]
116
+ value.map { |v| _deserialize(inner_type, v) }
117
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
118
+ k_type = Regexp.last_match[:k_type]
119
+ v_type = Regexp.last_match[:v_type]
120
+ {}.tap do |hash|
121
+ value.each do |k, v|
122
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
123
+ end
124
+ end
125
+ else # model
126
+ temp_model = DocuSign_eSign.const_get(type).new
127
+ temp_model.build_from_hash(value)
128
+ end
129
+ end
130
+
131
+ # Returns the string representation of the object
132
+ # @return [String] String presentation of the object
133
+ def to_s
134
+ to_hash.to_s
135
+ end
136
+
137
+ # to_body is an alias to to_hash (backward compatibility)
138
+ # @return [Hash] Returns the object in the form of hash
139
+ def to_body
140
+ to_hash
141
+ end
142
+
143
+ # Returns the object in the form of hash
144
+ # @return [Hash] Returns the object in the form of hash
145
+ def to_hash
146
+ hash = {}
147
+ self.class.attribute_map.each_pair do |attr, param|
148
+ value = self.send(attr)
149
+ next if value.nil?
150
+ hash[param] = _to_hash(value)
151
+ end
152
+ hash
153
+ end
154
+
155
+ # Outputs non-array value in the form of hash
156
+ # For object, use to_hash. Otherwise, just return the value
157
+ # @param [Object] value Any valid value
158
+ # @return [Hash] Returns the value in the form of hash
159
+ def _to_hash(value)
160
+ if value.is_a?(Array)
161
+ value.compact.map { |v| _to_hash(v) }
162
+ elsif value.is_a?(Hash)
163
+ {}.tap do |hash|
164
+ value.each { |k, v| hash[k] = _to_hash(v) }
165
+ end
166
+ elsif value.respond_to? :to_hash
167
+ value.to_hash
168
+ else
169
+ value
170
+ end
171
+ end
172
+
173
+ end
174
+ end
@@ -10,5 +10,5 @@ Generated by: https://github.com/swagger-api/swagger-codegen.git
10
10
  =end
11
11
 
12
12
  module DocuSign_eSign
13
- VERSION = '3.13.0.rc1'
13
+ VERSION = '3.13.0'
14
14
  end
@@ -148,6 +148,7 @@ require 'docusign_esign/models/conditional_recipient_rule_filter'
148
148
  require 'docusign_esign/models/connect_config_results'
149
149
  require 'docusign_esign/models/connect_custom_configuration'
150
150
  require 'docusign_esign/models/connect_debug_log'
151
+ require 'docusign_esign/models/connect_delete_failure_result'
151
152
  require 'docusign_esign/models/connect_event_data'
152
153
  require 'docusign_esign/models/connect_failure_filter'
153
154
  require 'docusign_esign/models/connect_failure_result'
metadata CHANGED
@@ -1,300 +1,273 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: docusign_esign
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.13.0.rc1
5
- prerelease: 7
4
+ version: 3.13.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - DocuSign
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2021-09-22 00:00:00.000000000 Z
11
+ date: 2021-11-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: jwt
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
19
  version: '2.2'
22
- - - ! '>='
20
+ - - ">="
23
21
  - !ruby/object:Gem::Version
24
22
  version: 2.2.1
25
23
  type: :runtime
26
24
  prerelease: false
27
25
  version_requirements: !ruby/object:Gem::Requirement
28
- none: false
29
26
  requirements:
30
- - - ~>
27
+ - - "~>"
31
28
  - !ruby/object:Gem::Version
32
29
  version: '2.2'
33
- - - ! '>='
30
+ - - ">="
34
31
  - !ruby/object:Gem::Version
35
32
  version: 2.2.1
36
33
  - !ruby/object:Gem::Dependency
37
34
  name: addressable
38
35
  requirement: !ruby/object:Gem::Requirement
39
- none: false
40
36
  requirements:
41
- - - ~>
37
+ - - "~>"
42
38
  - !ruby/object:Gem::Version
43
39
  version: '2.7'
44
- - - ! '>='
40
+ - - ">="
45
41
  - !ruby/object:Gem::Version
46
42
  version: 2.7.0
47
43
  type: :runtime
48
44
  prerelease: false
49
45
  version_requirements: !ruby/object:Gem::Requirement
50
- none: false
51
46
  requirements:
52
- - - ~>
47
+ - - "~>"
53
48
  - !ruby/object:Gem::Version
54
49
  version: '2.7'
55
- - - ! '>='
50
+ - - ">="
56
51
  - !ruby/object:Gem::Version
57
52
  version: 2.7.0
58
53
  - !ruby/object:Gem::Dependency
59
54
  name: typhoeus
60
55
  requirement: !ruby/object:Gem::Requirement
61
- none: false
62
56
  requirements:
63
- - - ~>
57
+ - - "~>"
64
58
  - !ruby/object:Gem::Version
65
59
  version: '1.0'
66
- - - ! '>='
60
+ - - ">="
67
61
  - !ruby/object:Gem::Version
68
62
  version: 1.0.1
69
63
  type: :runtime
70
64
  prerelease: false
71
65
  version_requirements: !ruby/object:Gem::Requirement
72
- none: false
73
66
  requirements:
74
- - - ~>
67
+ - - "~>"
75
68
  - !ruby/object:Gem::Version
76
69
  version: '1.0'
77
- - - ! '>='
70
+ - - ">="
78
71
  - !ruby/object:Gem::Version
79
72
  version: 1.0.1
80
73
  - !ruby/object:Gem::Dependency
81
74
  name: json
82
75
  requirement: !ruby/object:Gem::Requirement
83
- none: false
84
76
  requirements:
85
- - - ~>
77
+ - - "~>"
86
78
  - !ruby/object:Gem::Version
87
79
  version: '2.1'
88
- - - ! '>='
80
+ - - ">="
89
81
  - !ruby/object:Gem::Version
90
82
  version: 2.1.0
91
83
  type: :runtime
92
84
  prerelease: false
93
85
  version_requirements: !ruby/object:Gem::Requirement
94
- none: false
95
86
  requirements:
96
- - - ~>
87
+ - - "~>"
97
88
  - !ruby/object:Gem::Version
98
89
  version: '2.1'
99
- - - ! '>='
90
+ - - ">="
100
91
  - !ruby/object:Gem::Version
101
92
  version: 2.1.0
102
93
  - !ruby/object:Gem::Dependency
103
94
  name: rspec-mocks
104
95
  requirement: !ruby/object:Gem::Requirement
105
- none: false
106
96
  requirements:
107
- - - ~>
97
+ - - "~>"
108
98
  - !ruby/object:Gem::Version
109
99
  version: '3.8'
110
- - - ! '>='
100
+ - - ">="
111
101
  - !ruby/object:Gem::Version
112
102
  version: 3.8.0
113
103
  type: :development
114
104
  prerelease: false
115
105
  version_requirements: !ruby/object:Gem::Requirement
116
- none: false
117
106
  requirements:
118
- - - ~>
107
+ - - "~>"
119
108
  - !ruby/object:Gem::Version
120
109
  version: '3.8'
121
- - - ! '>='
110
+ - - ">="
122
111
  - !ruby/object:Gem::Version
123
112
  version: 3.8.0
124
113
  - !ruby/object:Gem::Dependency
125
114
  name: rspec-expectations
126
115
  requirement: !ruby/object:Gem::Requirement
127
- none: false
128
116
  requirements:
129
- - - ~>
117
+ - - "~>"
130
118
  - !ruby/object:Gem::Version
131
119
  version: '3.8'
132
- - - ! '>='
120
+ - - ">="
133
121
  - !ruby/object:Gem::Version
134
122
  version: 3.8.0
135
123
  type: :development
136
124
  prerelease: false
137
125
  version_requirements: !ruby/object:Gem::Requirement
138
- none: false
139
126
  requirements:
140
- - - ~>
127
+ - - "~>"
141
128
  - !ruby/object:Gem::Version
142
129
  version: '3.8'
143
- - - ! '>='
130
+ - - ">="
144
131
  - !ruby/object:Gem::Version
145
132
  version: 3.8.0
146
133
  - !ruby/object:Gem::Dependency
147
134
  name: rspec
148
135
  requirement: !ruby/object:Gem::Requirement
149
- none: false
150
136
  requirements:
151
- - - ~>
137
+ - - "~>"
152
138
  - !ruby/object:Gem::Version
153
139
  version: '3.4'
154
- - - ! '>='
140
+ - - ">="
155
141
  - !ruby/object:Gem::Version
156
142
  version: 3.4.0
157
143
  type: :development
158
144
  prerelease: false
159
145
  version_requirements: !ruby/object:Gem::Requirement
160
- none: false
161
146
  requirements:
162
- - - ~>
147
+ - - "~>"
163
148
  - !ruby/object:Gem::Version
164
149
  version: '3.4'
165
- - - ! '>='
150
+ - - ">="
166
151
  - !ruby/object:Gem::Version
167
152
  version: 3.4.0
168
153
  - !ruby/object:Gem::Dependency
169
154
  name: vcr
170
155
  requirement: !ruby/object:Gem::Requirement
171
- none: false
172
156
  requirements:
173
- - - ~>
157
+ - - "~>"
174
158
  - !ruby/object:Gem::Version
175
159
  version: '3.0'
176
- - - ! '>='
160
+ - - ">="
177
161
  - !ruby/object:Gem::Version
178
162
  version: 3.0.1
179
163
  type: :development
180
164
  prerelease: false
181
165
  version_requirements: !ruby/object:Gem::Requirement
182
- none: false
183
166
  requirements:
184
- - - ~>
167
+ - - "~>"
185
168
  - !ruby/object:Gem::Version
186
169
  version: '3.0'
187
- - - ! '>='
170
+ - - ">="
188
171
  - !ruby/object:Gem::Version
189
172
  version: 3.0.1
190
173
  - !ruby/object:Gem::Dependency
191
174
  name: webmock
192
175
  requirement: !ruby/object:Gem::Requirement
193
- none: false
194
176
  requirements:
195
- - - ~>
177
+ - - "~>"
196
178
  - !ruby/object:Gem::Version
197
179
  version: '1.24'
198
- - - ! '>='
180
+ - - ">="
199
181
  - !ruby/object:Gem::Version
200
182
  version: 1.24.3
201
183
  type: :development
202
184
  prerelease: false
203
185
  version_requirements: !ruby/object:Gem::Requirement
204
- none: false
205
186
  requirements:
206
- - - ~>
187
+ - - "~>"
207
188
  - !ruby/object:Gem::Version
208
189
  version: '1.24'
209
- - - ! '>='
190
+ - - ">="
210
191
  - !ruby/object:Gem::Version
211
192
  version: 1.24.3
212
193
  - !ruby/object:Gem::Dependency
213
194
  name: autotest
214
195
  requirement: !ruby/object:Gem::Requirement
215
- none: false
216
196
  requirements:
217
- - - ~>
197
+ - - "~>"
218
198
  - !ruby/object:Gem::Version
219
199
  version: '4.4'
220
- - - ! '>='
200
+ - - ">="
221
201
  - !ruby/object:Gem::Version
222
202
  version: 4.4.6
223
203
  type: :development
224
204
  prerelease: false
225
205
  version_requirements: !ruby/object:Gem::Requirement
226
- none: false
227
206
  requirements:
228
- - - ~>
207
+ - - "~>"
229
208
  - !ruby/object:Gem::Version
230
209
  version: '4.4'
231
- - - ! '>='
210
+ - - ">="
232
211
  - !ruby/object:Gem::Version
233
212
  version: 4.4.6
234
213
  - !ruby/object:Gem::Dependency
235
214
  name: autotest-rails-pure
236
215
  requirement: !ruby/object:Gem::Requirement
237
- none: false
238
216
  requirements:
239
- - - ~>
217
+ - - "~>"
240
218
  - !ruby/object:Gem::Version
241
219
  version: '4.1'
242
- - - ! '>='
220
+ - - ">="
243
221
  - !ruby/object:Gem::Version
244
222
  version: 4.1.2
245
223
  type: :development
246
224
  prerelease: false
247
225
  version_requirements: !ruby/object:Gem::Requirement
248
- none: false
249
226
  requirements:
250
- - - ~>
227
+ - - "~>"
251
228
  - !ruby/object:Gem::Version
252
229
  version: '4.1'
253
- - - ! '>='
230
+ - - ">="
254
231
  - !ruby/object:Gem::Version
255
232
  version: 4.1.2
256
233
  - !ruby/object:Gem::Dependency
257
234
  name: autotest-growl
258
235
  requirement: !ruby/object:Gem::Requirement
259
- none: false
260
236
  requirements:
261
- - - ~>
237
+ - - "~>"
262
238
  - !ruby/object:Gem::Version
263
239
  version: '0.2'
264
- - - ! '>='
240
+ - - ">="
265
241
  - !ruby/object:Gem::Version
266
242
  version: 0.2.16
267
243
  type: :development
268
244
  prerelease: false
269
245
  version_requirements: !ruby/object:Gem::Requirement
270
- none: false
271
246
  requirements:
272
- - - ~>
247
+ - - "~>"
273
248
  - !ruby/object:Gem::Version
274
249
  version: '0.2'
275
- - - ! '>='
250
+ - - ">="
276
251
  - !ruby/object:Gem::Version
277
252
  version: 0.2.16
278
253
  - !ruby/object:Gem::Dependency
279
254
  name: autotest-fsevent
280
255
  requirement: !ruby/object:Gem::Requirement
281
- none: false
282
256
  requirements:
283
- - - ~>
257
+ - - "~>"
284
258
  - !ruby/object:Gem::Version
285
259
  version: '0.2'
286
- - - ! '>='
260
+ - - ">="
287
261
  - !ruby/object:Gem::Version
288
262
  version: 0.2.11
289
263
  type: :development
290
264
  prerelease: false
291
265
  version_requirements: !ruby/object:Gem::Requirement
292
- none: false
293
266
  requirements:
294
- - - ~>
267
+ - - "~>"
295
268
  - !ruby/object:Gem::Version
296
269
  version: '0.2'
297
- - - ! '>='
270
+ - - ">="
298
271
  - !ruby/object:Gem::Version
299
272
  version: 0.2.11
300
273
  description: The DocuSign package makes integrating DocuSign into your apps and websites
@@ -473,6 +446,7 @@ files:
473
446
  - lib/docusign_esign/models/connect_config_results.rb
474
447
  - lib/docusign_esign/models/connect_custom_configuration.rb
475
448
  - lib/docusign_esign/models/connect_debug_log.rb
449
+ - lib/docusign_esign/models/connect_delete_failure_result.rb
476
450
  - lib/docusign_esign/models/connect_event_data.rb
477
451
  - lib/docusign_esign/models/connect_failure_filter.rb
478
452
  - lib/docusign_esign/models/connect_failure_result.rb
@@ -842,26 +816,25 @@ files:
842
816
  homepage: https://github.com/docusign/docusign-ruby-client
843
817
  licenses:
844
818
  - MIT
819
+ metadata: {}
845
820
  post_install_message:
846
821
  rdoc_options: []
847
822
  require_paths:
848
823
  - lib
849
824
  required_ruby_version: !ruby/object:Gem::Requirement
850
- none: false
851
825
  requirements:
852
- - - ! '>='
826
+ - - ">="
853
827
  - !ruby/object:Gem::Version
854
828
  version: '1.9'
855
829
  required_rubygems_version: !ruby/object:Gem::Requirement
856
- none: false
857
830
  requirements:
858
- - - ! '>'
831
+ - - ">="
859
832
  - !ruby/object:Gem::Version
860
- version: 1.3.1
833
+ version: '0'
861
834
  requirements: []
862
835
  rubyforge_project:
863
- rubygems_version: 1.8.23
836
+ rubygems_version: 2.7.6
864
837
  signing_key:
865
- specification_version: 3
838
+ specification_version: 4
866
839
  summary: DocuSign REST API Ruby Gem
867
840
  test_files: []