docusign_esign 3.17.0 → 3.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13d995447ba1fdc21b2b472f7f57a99249fe03e798e98e0bd3728872b136f3fe
4
- data.tar.gz: 7b8a3bf9bf397c3aab42ba3e44fd19daa90a28350d41673ea8162434617aad37
3
+ metadata.gz: ac37b3dd62a7b89612ba72e9499fb918108ec08abc59009f4a3cdc39f4e2710b
4
+ data.tar.gz: 951ce4fb442366a1a778b313e0aff49300a364a53972b2d7c9dc812259ab3539
5
5
  SHA512:
6
- metadata.gz: 5e46507e8aa1b66dcb2b6b4baa6927dccfb5017575646f43a8d75bbc69765fea50a47a578992e765e6d5e904042872d3479b9ab2f45e91925b07d390db65696c
7
- data.tar.gz: a01277e2601d46bafb2c69cfc4f97343935683b904c06ac9e34699a0cba127f84663eb9b6a247d9f40c28a8b18df0b0744b5f28ed4a3124efcc45a515d68bb47
6
+ metadata.gz: 613d3b01341e1fb8f3d62c28487e95a28afa4b88318e37a77aa8f2c69dd8f32755dac5773825e813dd4e6282dcb2e8b3271cf03c43703556f78c2e48331b2c48
7
+ data.tar.gz: ff77bf692231013b2b94d50f205d1d4abb01f7eeb4945c11f6920370e8d5d2a9d43071cf9c59eac4aa4bc3bb177019a4214a0ac2456af2b971fd3d8328ef67f8
data/CHANGELOG.md CHANGED
@@ -3,6 +3,11 @@ 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
+ ## [v3.18.0] - eSignature API v2.1-22.2.00.00 - 2022-06-17
7
+ ### Changed
8
+ - Added support for version v2.1-22.2.00.00 of the DocuSign ESignature API.
9
+ - Updated the SDK release version.
10
+
6
11
  ## [v3.17.0] - eSignature API v2.1-22.1.02.00 - 2022-05-18
7
12
  ### Changed
8
13
  - Added support for version v2.1-22.1.02.00 of the DocuSign ESignature API.
@@ -1376,6 +1376,57 @@ module DocuSign_eSign
1376
1376
  return data, status_code, headers
1377
1377
  end
1378
1378
 
1379
+ # Submits a batch of historical envelopes for republish to an adhoc config.
1380
+ #
1381
+ # @param account_id The external account number (int) or account ID Guid.
1382
+ # @param connect_historical_envelope_republish (optional parameter)
1383
+ # @return [EnvelopePublishTransaction]
1384
+ def create_historical_envelope_publish_transaction(account_id, connect_historical_envelope_republish)
1385
+ data, _status_code, _headers = create_historical_envelope_publish_transaction_with_http_info(account_id, connect_historical_envelope_republish)
1386
+ return data
1387
+ end
1388
+
1389
+ # Submits a batch of historical envelopes for republish to an adhoc config.
1390
+ #
1391
+ # @param account_id The external account number (int) or account ID Guid.
1392
+ # @param connect_historical_envelope_republish (optional parameter)
1393
+ # @return [Array<(EnvelopePublishTransaction, Fixnum, Hash)>] EnvelopePublishTransaction data, response status code and response headers
1394
+ def create_historical_envelope_publish_transaction_with_http_info(account_id, connect_historical_envelope_republish)
1395
+ if @api_client.config.debugging
1396
+ @api_client.config.logger.debug "Calling API: EnvelopesApi.create_historical_envelope_publish_transaction ..."
1397
+ end
1398
+ # verify the required parameter 'account_id' is set
1399
+ fail ArgumentError, "Missing the required parameter 'account_id' when calling EnvelopesApi.create_historical_envelope_publish_transaction" if account_id.nil?
1400
+ # resource path
1401
+ local_var_path = "/v2.1/accounts/{accountId}/connect/envelopes/publish/historical".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s)
1402
+
1403
+ # query parameters
1404
+ query_params = {}
1405
+
1406
+ # header parameters
1407
+ header_params = {}
1408
+ # HTTP header 'Accept' (if needed)
1409
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1410
+
1411
+ # form parameters
1412
+ form_params = {}
1413
+
1414
+ # http body (model)
1415
+ post_body = @api_client.object_to_http_body(connect_historical_envelope_republish)
1416
+ auth_names = []
1417
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1418
+ :header_params => header_params,
1419
+ :query_params => query_params,
1420
+ :form_params => form_params,
1421
+ :body => post_body,
1422
+ :auth_names => auth_names,
1423
+ :return_type => 'EnvelopePublishTransaction')
1424
+ if @api_client.config.debugging
1425
+ @api_client.config.logger.debug "API called: EnvelopesApi#create_historical_envelope_publish_transaction\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1426
+ end
1427
+ return data, status_code, headers
1428
+ end
1429
+
1379
1430
  # Lock an envelope.
1380
1431
  # Locks the specified envelope, and sets the time until the lock expires, to prevent other users or recipients from accessing and changing the envelope. ###### Note: Users must have envelope locking capability enabled to use this function (userSetting `canLockEnvelopes` must be set to true for the user).
1381
1432
  # @param account_id The external account number (int) or account ID Guid.
@@ -47,6 +47,12 @@ module DocuSign_eSign
47
47
  #
48
48
  attr_accessor :order_by
49
49
 
50
+ #
51
+ attr_accessor :search_fields
52
+
53
+ #
54
+ attr_accessor :search_text
55
+
50
56
  #
51
57
  attr_accessor :to_date
52
58
 
@@ -409,6 +415,8 @@ module DocuSign_eSign
409
415
  query_params[:'from_date'] = options.from_date if !options.from_date.nil?
410
416
  query_params[:'order'] = options.order if !options.order.nil?
411
417
  query_params[:'order_by'] = options.order_by if !options.order_by.nil?
418
+ query_params[:'search_fields'] = options.search_fields if !options.search_fields.nil?
419
+ query_params[:'search_text'] = options.search_text if !options.search_text.nil?
412
420
  query_params[:'to_date'] = options.to_date if !options.to_date.nil?
413
421
 
414
422
  # header parameters
@@ -35,7 +35,7 @@ module DocuSign_eSign
35
35
  # @option config [Configuration] Configuration for initializing the object, default to Configuration.default
36
36
  def initialize(config = Configuration.default)
37
37
  @config = config
38
- @user_agent = "Swagger-Codegen/3.17.0/ruby"
38
+ @user_agent = "Swagger-Codegen/3.18.0/ruby"
39
39
  @default_headers = {
40
40
  'Content-Type' => "application/json",
41
41
  'User-Agent' => @user_agent
@@ -43,6 +43,8 @@ module DocuSign_eSign
43
43
  # Reserved: TBD
44
44
  attr_accessor :billing_profile
45
45
 
46
+ attr_accessor :brands
47
+
46
48
  # When set to **true**, specifies that you can upgrade the account through the API.
47
49
  attr_accessor :can_upgrade
48
50
 
@@ -137,6 +139,7 @@ module DocuSign_eSign
137
139
  :'billing_period_envelopes_sent' => :'billingPeriodEnvelopesSent',
138
140
  :'billing_period_start_date' => :'billingPeriodStartDate',
139
141
  :'billing_profile' => :'billingProfile',
142
+ :'brands' => :'brands',
140
143
  :'can_upgrade' => :'canUpgrade',
141
144
  :'connect_permission' => :'connectPermission',
142
145
  :'created_date' => :'createdDate',
@@ -180,6 +183,7 @@ module DocuSign_eSign
180
183
  :'billing_period_envelopes_sent' => :'String',
181
184
  :'billing_period_start_date' => :'String',
182
185
  :'billing_profile' => :'String',
186
+ :'brands' => :'BrandsResponse',
183
187
  :'can_upgrade' => :'String',
184
188
  :'connect_permission' => :'String',
185
189
  :'created_date' => :'String',
@@ -258,6 +262,10 @@ module DocuSign_eSign
258
262
  self.billing_profile = attributes[:'billingProfile']
259
263
  end
260
264
 
265
+ if attributes.has_key?(:'brands')
266
+ self.brands = attributes[:'brands']
267
+ end
268
+
261
269
  if attributes.has_key?(:'canUpgrade')
262
270
  self.can_upgrade = attributes[:'canUpgrade']
263
271
  end
@@ -399,6 +407,7 @@ module DocuSign_eSign
399
407
  billing_period_envelopes_sent == o.billing_period_envelopes_sent &&
400
408
  billing_period_start_date == o.billing_period_start_date &&
401
409
  billing_profile == o.billing_profile &&
410
+ brands == o.brands &&
402
411
  can_upgrade == o.can_upgrade &&
403
412
  connect_permission == o.connect_permission &&
404
413
  created_date == o.created_date &&
@@ -437,7 +446,7 @@ module DocuSign_eSign
437
446
  # Calculates hash code according to all attributes.
438
447
  # @return [Fixnum] Hash code
439
448
  def hash
440
- [account_id_guid, account_name, account_settings, allow_transaction_rooms, billing_period_days_remaining, billing_period_end_date, billing_period_envelopes_allowed, billing_period_envelopes_sent, billing_period_start_date, billing_profile, can_upgrade, connect_permission, created_date, currency_code, current_plan_id, display_appliance_start_url, display_appliance_url, distributor_code, docu_sign_landing_url, dss_values, envelope_sending_blocked, envelope_unit_price, external_account_id, forgotten_password_questions_count, is_downgrade, payment_method, plan_classification, plan_end_date, plan_name, plan_start_date, recipient_domains, seats_allowed, seats_in_use, status21_cfr_part11, suspension_date, suspension_status, use_display_appliance].hash
449
+ [account_id_guid, account_name, account_settings, allow_transaction_rooms, billing_period_days_remaining, billing_period_end_date, billing_period_envelopes_allowed, billing_period_envelopes_sent, billing_period_start_date, billing_profile, brands, can_upgrade, connect_permission, created_date, currency_code, current_plan_id, display_appliance_start_url, display_appliance_url, distributor_code, docu_sign_landing_url, dss_values, envelope_sending_blocked, envelope_unit_price, external_account_id, forgotten_password_questions_count, is_downgrade, payment_method, plan_classification, plan_end_date, plan_name, plan_start_date, recipient_domains, seats_allowed, seats_in_use, status21_cfr_part11, suspension_date, suspension_status, use_display_appliance].hash
441
450
  end
442
451
 
443
452
  # Builds the object from hash
@@ -237,6 +237,11 @@ module DocuSign_eSign
237
237
 
238
238
  attr_accessor :allow_managed_stamps_metadata
239
239
 
240
+ #
241
+ attr_accessor :allow_managing_envelopes_on_behalf_of_others
242
+
243
+ attr_accessor :allow_managing_envelopes_on_behalf_of_others_metadata
244
+
240
245
  # When set to **true**, Document Markup is enabled for envelope. Account must have Document Markup enabled to use this
241
246
  attr_accessor :allow_markup
242
247
 
@@ -313,6 +318,11 @@ module DocuSign_eSign
313
318
 
314
319
  attr_accessor :allow_organization_to_use_remote_notary_metadata
315
320
 
321
+ #
322
+ attr_accessor :allow_organization_to_use_third_party_electronic_notary
323
+
324
+ attr_accessor :allow_organization_to_use_third_party_electronic_notary_metadata
325
+
316
326
  #
317
327
  attr_accessor :allow_payment_processing
318
328
 
@@ -368,6 +378,11 @@ module DocuSign_eSign
368
378
 
369
379
  attr_accessor :allow_security_appliance_metadata
370
380
 
381
+ #
382
+ attr_accessor :allow_sending_envelopes_on_behalf_of_others
383
+
384
+ attr_accessor :allow_sending_envelopes_on_behalf_of_others_metadata
385
+
371
386
  #
372
387
  attr_accessor :allow_send_to_certified_delivery
373
388
 
@@ -454,6 +469,11 @@ module DocuSign_eSign
454
469
 
455
470
  attr_accessor :allow_supplemental_documents_metadata
456
471
 
472
+ #
473
+ attr_accessor :allow_third_party_electronic_notary
474
+
475
+ attr_accessor :allow_third_party_electronic_notary_metadata
476
+
457
477
  #
458
478
  attr_accessor :allow_users_to_access_directory
459
479
 
@@ -1618,6 +1638,8 @@ module DocuSign_eSign
1618
1638
  :'allow_in_person_metadata' => :'allowInPersonMetadata',
1619
1639
  :'allow_managed_stamps' => :'allowManagedStamps',
1620
1640
  :'allow_managed_stamps_metadata' => :'allowManagedStampsMetadata',
1641
+ :'allow_managing_envelopes_on_behalf_of_others' => :'allowManagingEnvelopesOnBehalfOfOthers',
1642
+ :'allow_managing_envelopes_on_behalf_of_others_metadata' => :'allowManagingEnvelopesOnBehalfOfOthersMetadata',
1621
1643
  :'allow_markup' => :'allowMarkup',
1622
1644
  :'allow_markup_metadata' => :'allowMarkupMetadata',
1623
1645
  :'allow_member_time_zone' => :'allowMemberTimeZone',
@@ -1648,6 +1670,8 @@ module DocuSign_eSign
1648
1670
  :'allow_organization_to_use_in_person_electronic_notary_metadata' => :'allowOrganizationToUseInPersonElectronicNotaryMetadata',
1649
1671
  :'allow_organization_to_use_remote_notary' => :'allowOrganizationToUseRemoteNotary',
1650
1672
  :'allow_organization_to_use_remote_notary_metadata' => :'allowOrganizationToUseRemoteNotaryMetadata',
1673
+ :'allow_organization_to_use_third_party_electronic_notary' => :'allowOrganizationToUseThirdPartyElectronicNotary',
1674
+ :'allow_organization_to_use_third_party_electronic_notary_metadata' => :'allowOrganizationToUseThirdPartyElectronicNotaryMetadata',
1651
1675
  :'allow_payment_processing' => :'allowPaymentProcessing',
1652
1676
  :'allow_payment_processing_metadata' => :'allowPaymentProcessingMetadata',
1653
1677
  :'allow_phone_authentication' => :'allowPhoneAuthentication',
@@ -1670,6 +1694,8 @@ module DocuSign_eSign
1670
1694
  :'allow_scheduled_sending_metadata' => :'allowScheduledSendingMetadata',
1671
1695
  :'allow_security_appliance' => :'allowSecurityAppliance',
1672
1696
  :'allow_security_appliance_metadata' => :'allowSecurityApplianceMetadata',
1697
+ :'allow_sending_envelopes_on_behalf_of_others' => :'allowSendingEnvelopesOnBehalfOfOthers',
1698
+ :'allow_sending_envelopes_on_behalf_of_others_metadata' => :'allowSendingEnvelopesOnBehalfOfOthersMetadata',
1673
1699
  :'allow_send_to_certified_delivery' => :'allowSendToCertifiedDelivery',
1674
1700
  :'allow_send_to_certified_delivery_metadata' => :'allowSendToCertifiedDeliveryMetadata',
1675
1701
  :'allow_send_to_intermediary' => :'allowSendToIntermediary',
@@ -1704,6 +1730,8 @@ module DocuSign_eSign
1704
1730
  :'allow_social_id_login_metadata' => :'allowSocialIdLoginMetadata',
1705
1731
  :'allow_supplemental_documents' => :'allowSupplementalDocuments',
1706
1732
  :'allow_supplemental_documents_metadata' => :'allowSupplementalDocumentsMetadata',
1733
+ :'allow_third_party_electronic_notary' => :'allowThirdPartyElectronicNotary',
1734
+ :'allow_third_party_electronic_notary_metadata' => :'allowThirdPartyElectronicNotaryMetadata',
1707
1735
  :'allow_users_to_access_directory' => :'allowUsersToAccessDirectory',
1708
1736
  :'allow_users_to_access_directory_metadata' => :'allowUsersToAccessDirectoryMetadata',
1709
1737
  :'allow_value_insights' => :'allowValueInsights',
@@ -2225,6 +2253,8 @@ module DocuSign_eSign
2225
2253
  :'allow_in_person_metadata' => :'SettingsMetadata',
2226
2254
  :'allow_managed_stamps' => :'String',
2227
2255
  :'allow_managed_stamps_metadata' => :'SettingsMetadata',
2256
+ :'allow_managing_envelopes_on_behalf_of_others' => :'String',
2257
+ :'allow_managing_envelopes_on_behalf_of_others_metadata' => :'SettingsMetadata',
2228
2258
  :'allow_markup' => :'String',
2229
2259
  :'allow_markup_metadata' => :'SettingsMetadata',
2230
2260
  :'allow_member_time_zone' => :'String',
@@ -2255,6 +2285,8 @@ module DocuSign_eSign
2255
2285
  :'allow_organization_to_use_in_person_electronic_notary_metadata' => :'SettingsMetadata',
2256
2286
  :'allow_organization_to_use_remote_notary' => :'String',
2257
2287
  :'allow_organization_to_use_remote_notary_metadata' => :'SettingsMetadata',
2288
+ :'allow_organization_to_use_third_party_electronic_notary' => :'String',
2289
+ :'allow_organization_to_use_third_party_electronic_notary_metadata' => :'SettingsMetadata',
2258
2290
  :'allow_payment_processing' => :'String',
2259
2291
  :'allow_payment_processing_metadata' => :'SettingsMetadata',
2260
2292
  :'allow_phone_authentication' => :'String',
@@ -2277,6 +2309,8 @@ module DocuSign_eSign
2277
2309
  :'allow_scheduled_sending_metadata' => :'SettingsMetadata',
2278
2310
  :'allow_security_appliance' => :'String',
2279
2311
  :'allow_security_appliance_metadata' => :'SettingsMetadata',
2312
+ :'allow_sending_envelopes_on_behalf_of_others' => :'String',
2313
+ :'allow_sending_envelopes_on_behalf_of_others_metadata' => :'SettingsMetadata',
2280
2314
  :'allow_send_to_certified_delivery' => :'String',
2281
2315
  :'allow_send_to_certified_delivery_metadata' => :'SettingsMetadata',
2282
2316
  :'allow_send_to_intermediary' => :'String',
@@ -2311,6 +2345,8 @@ module DocuSign_eSign
2311
2345
  :'allow_social_id_login_metadata' => :'SettingsMetadata',
2312
2346
  :'allow_supplemental_documents' => :'String',
2313
2347
  :'allow_supplemental_documents_metadata' => :'SettingsMetadata',
2348
+ :'allow_third_party_electronic_notary' => :'String',
2349
+ :'allow_third_party_electronic_notary_metadata' => :'SettingsMetadata',
2314
2350
  :'allow_users_to_access_directory' => :'String',
2315
2351
  :'allow_users_to_access_directory_metadata' => :'SettingsMetadata',
2316
2352
  :'allow_value_insights' => :'String',
@@ -3104,6 +3140,14 @@ module DocuSign_eSign
3104
3140
  self.allow_managed_stamps_metadata = attributes[:'allowManagedStampsMetadata']
3105
3141
  end
3106
3142
 
3143
+ if attributes.has_key?(:'allowManagingEnvelopesOnBehalfOfOthers')
3144
+ self.allow_managing_envelopes_on_behalf_of_others = attributes[:'allowManagingEnvelopesOnBehalfOfOthers']
3145
+ end
3146
+
3147
+ if attributes.has_key?(:'allowManagingEnvelopesOnBehalfOfOthersMetadata')
3148
+ self.allow_managing_envelopes_on_behalf_of_others_metadata = attributes[:'allowManagingEnvelopesOnBehalfOfOthersMetadata']
3149
+ end
3150
+
3107
3151
  if attributes.has_key?(:'allowMarkup')
3108
3152
  self.allow_markup = attributes[:'allowMarkup']
3109
3153
  end
@@ -3224,6 +3268,14 @@ module DocuSign_eSign
3224
3268
  self.allow_organization_to_use_remote_notary_metadata = attributes[:'allowOrganizationToUseRemoteNotaryMetadata']
3225
3269
  end
3226
3270
 
3271
+ if attributes.has_key?(:'allowOrganizationToUseThirdPartyElectronicNotary')
3272
+ self.allow_organization_to_use_third_party_electronic_notary = attributes[:'allowOrganizationToUseThirdPartyElectronicNotary']
3273
+ end
3274
+
3275
+ if attributes.has_key?(:'allowOrganizationToUseThirdPartyElectronicNotaryMetadata')
3276
+ self.allow_organization_to_use_third_party_electronic_notary_metadata = attributes[:'allowOrganizationToUseThirdPartyElectronicNotaryMetadata']
3277
+ end
3278
+
3227
3279
  if attributes.has_key?(:'allowPaymentProcessing')
3228
3280
  self.allow_payment_processing = attributes[:'allowPaymentProcessing']
3229
3281
  end
@@ -3312,6 +3364,14 @@ module DocuSign_eSign
3312
3364
  self.allow_security_appliance_metadata = attributes[:'allowSecurityApplianceMetadata']
3313
3365
  end
3314
3366
 
3367
+ if attributes.has_key?(:'allowSendingEnvelopesOnBehalfOfOthers')
3368
+ self.allow_sending_envelopes_on_behalf_of_others = attributes[:'allowSendingEnvelopesOnBehalfOfOthers']
3369
+ end
3370
+
3371
+ if attributes.has_key?(:'allowSendingEnvelopesOnBehalfOfOthersMetadata')
3372
+ self.allow_sending_envelopes_on_behalf_of_others_metadata = attributes[:'allowSendingEnvelopesOnBehalfOfOthersMetadata']
3373
+ end
3374
+
3315
3375
  if attributes.has_key?(:'allowSendToCertifiedDelivery')
3316
3376
  self.allow_send_to_certified_delivery = attributes[:'allowSendToCertifiedDelivery']
3317
3377
  end
@@ -3448,6 +3508,14 @@ module DocuSign_eSign
3448
3508
  self.allow_supplemental_documents_metadata = attributes[:'allowSupplementalDocumentsMetadata']
3449
3509
  end
3450
3510
 
3511
+ if attributes.has_key?(:'allowThirdPartyElectronicNotary')
3512
+ self.allow_third_party_electronic_notary = attributes[:'allowThirdPartyElectronicNotary']
3513
+ end
3514
+
3515
+ if attributes.has_key?(:'allowThirdPartyElectronicNotaryMetadata')
3516
+ self.allow_third_party_electronic_notary_metadata = attributes[:'allowThirdPartyElectronicNotaryMetadata']
3517
+ end
3518
+
3451
3519
  if attributes.has_key?(:'allowUsersToAccessDirectory')
3452
3520
  self.allow_users_to_access_directory = attributes[:'allowUsersToAccessDirectory']
3453
3521
  end
@@ -5268,6 +5336,8 @@ module DocuSign_eSign
5268
5336
  allow_in_person_metadata == o.allow_in_person_metadata &&
5269
5337
  allow_managed_stamps == o.allow_managed_stamps &&
5270
5338
  allow_managed_stamps_metadata == o.allow_managed_stamps_metadata &&
5339
+ allow_managing_envelopes_on_behalf_of_others == o.allow_managing_envelopes_on_behalf_of_others &&
5340
+ allow_managing_envelopes_on_behalf_of_others_metadata == o.allow_managing_envelopes_on_behalf_of_others_metadata &&
5271
5341
  allow_markup == o.allow_markup &&
5272
5342
  allow_markup_metadata == o.allow_markup_metadata &&
5273
5343
  allow_member_time_zone == o.allow_member_time_zone &&
@@ -5298,6 +5368,8 @@ module DocuSign_eSign
5298
5368
  allow_organization_to_use_in_person_electronic_notary_metadata == o.allow_organization_to_use_in_person_electronic_notary_metadata &&
5299
5369
  allow_organization_to_use_remote_notary == o.allow_organization_to_use_remote_notary &&
5300
5370
  allow_organization_to_use_remote_notary_metadata == o.allow_organization_to_use_remote_notary_metadata &&
5371
+ allow_organization_to_use_third_party_electronic_notary == o.allow_organization_to_use_third_party_electronic_notary &&
5372
+ allow_organization_to_use_third_party_electronic_notary_metadata == o.allow_organization_to_use_third_party_electronic_notary_metadata &&
5301
5373
  allow_payment_processing == o.allow_payment_processing &&
5302
5374
  allow_payment_processing_metadata == o.allow_payment_processing_metadata &&
5303
5375
  allow_phone_authentication == o.allow_phone_authentication &&
@@ -5320,6 +5392,8 @@ module DocuSign_eSign
5320
5392
  allow_scheduled_sending_metadata == o.allow_scheduled_sending_metadata &&
5321
5393
  allow_security_appliance == o.allow_security_appliance &&
5322
5394
  allow_security_appliance_metadata == o.allow_security_appliance_metadata &&
5395
+ allow_sending_envelopes_on_behalf_of_others == o.allow_sending_envelopes_on_behalf_of_others &&
5396
+ allow_sending_envelopes_on_behalf_of_others_metadata == o.allow_sending_envelopes_on_behalf_of_others_metadata &&
5323
5397
  allow_send_to_certified_delivery == o.allow_send_to_certified_delivery &&
5324
5398
  allow_send_to_certified_delivery_metadata == o.allow_send_to_certified_delivery_metadata &&
5325
5399
  allow_send_to_intermediary == o.allow_send_to_intermediary &&
@@ -5354,6 +5428,8 @@ module DocuSign_eSign
5354
5428
  allow_social_id_login_metadata == o.allow_social_id_login_metadata &&
5355
5429
  allow_supplemental_documents == o.allow_supplemental_documents &&
5356
5430
  allow_supplemental_documents_metadata == o.allow_supplemental_documents_metadata &&
5431
+ allow_third_party_electronic_notary == o.allow_third_party_electronic_notary &&
5432
+ allow_third_party_electronic_notary_metadata == o.allow_third_party_electronic_notary_metadata &&
5357
5433
  allow_users_to_access_directory == o.allow_users_to_access_directory &&
5358
5434
  allow_users_to_access_directory_metadata == o.allow_users_to_access_directory_metadata &&
5359
5435
  allow_value_insights == o.allow_value_insights &&
@@ -5791,7 +5867,7 @@ module DocuSign_eSign
5791
5867
  # Calculates hash code according to all attributes.
5792
5868
  # @return [Fixnum] Hash code
5793
5869
  def hash
5794
- [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_delayed_routing, allow_delayed_routing_metadata, allow_delegated_signing, allow_delegated_signing_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_electronic_notary, allow_in_person_electronic_notary_metadata, 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_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_payment_processing, allow_payment_processing_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_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, allow_web_forms, allow_web_forms_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, 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, 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_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_combined_pdf_download_for_sbs, 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_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_in_browser_editor, enable_in_browser_editor_metadata, enable_key_terms_suggestions_by_document_type, enable_key_terms_suggestions_by_document_type_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_site_specific_api, enable_search_site_specific_api_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_sms_delivery_primary, 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, 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, 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_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, 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, 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
5870
+ [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_delayed_routing, allow_delayed_routing_metadata, allow_delegated_signing, allow_delegated_signing_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_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_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_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_payment_processing, allow_payment_processing_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_users_to_access_directory, allow_users_to_access_directory_metadata, allow_value_insights, allow_value_insights_metadata, allow_web_forms, allow_web_forms_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, 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, 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_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_combined_pdf_download_for_sbs, 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_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_in_browser_editor, enable_in_browser_editor_metadata, enable_key_terms_suggestions_by_document_type, enable_key_terms_suggestions_by_document_type_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_site_specific_api, enable_search_site_specific_api_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_sms_delivery_primary, 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, 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, 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_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, 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, 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
5795
5871
  end
5796
5872
 
5797
5873
  # Builds the object from hash
@@ -37,6 +37,9 @@ module DocuSign_eSign
37
37
  #
38
38
  attr_accessor :completed_count
39
39
 
40
+ #
41
+ attr_accessor :consent_details_list
42
+
40
43
  # An optional array of strings that allows the sender to provide custom data about the recipient. This information is returned in the envelope status but otherwise not used by DocuSign. Each customField string can be a maximum of 100 characters.
41
44
  attr_accessor :custom_fields
42
45
 
@@ -219,6 +222,7 @@ module DocuSign_eSign
219
222
  :'auto_responded_reason' => :'autoRespondedReason',
220
223
  :'client_user_id' => :'clientUserId',
221
224
  :'completed_count' => :'completedCount',
225
+ :'consent_details_list' => :'consentDetailsList',
222
226
  :'custom_fields' => :'customFields',
223
227
  :'declined_date_time' => :'declinedDateTime',
224
228
  :'declined_reason' => :'declinedReason',
@@ -297,6 +301,7 @@ module DocuSign_eSign
297
301
  :'auto_responded_reason' => :'String',
298
302
  :'client_user_id' => :'String',
299
303
  :'completed_count' => :'String',
304
+ :'consent_details_list' => :'Array<ConsentDetails>',
300
305
  :'custom_fields' => :'Array<String>',
301
306
  :'declined_date_time' => :'String',
302
307
  :'declined_reason' => :'String',
@@ -406,6 +411,12 @@ module DocuSign_eSign
406
411
  self.completed_count = attributes[:'completedCount']
407
412
  end
408
413
 
414
+ if attributes.has_key?(:'consentDetailsList')
415
+ if (value = attributes[:'consentDetailsList']).is_a?(Array)
416
+ self.consent_details_list = value
417
+ end
418
+ end
419
+
409
420
  if attributes.has_key?(:'customFields')
410
421
  if (value = attributes[:'customFields']).is_a?(Array)
411
422
  self.custom_fields = value
@@ -703,6 +714,7 @@ module DocuSign_eSign
703
714
  auto_responded_reason == o.auto_responded_reason &&
704
715
  client_user_id == o.client_user_id &&
705
716
  completed_count == o.completed_count &&
717
+ consent_details_list == o.consent_details_list &&
706
718
  custom_fields == o.custom_fields &&
707
719
  declined_date_time == o.declined_date_time &&
708
720
  declined_reason == o.declined_reason &&
@@ -778,7 +790,7 @@ module DocuSign_eSign
778
790
  # Calculates hash code according to all attributes.
779
791
  # @return [Fixnum] Hash code
780
792
  def hash
781
- [access_code, access_code_metadata, add_access_code_to_email, additional_notifications, allow_system_override_for_locked_recipient, auto_responded_reason, client_user_id, completed_count, custom_fields, declined_date_time, declined_reason, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, email_recipient_post_signing_url, embedded_recipient_start_url, error_details, excluded_documents, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, note, note_metadata, phone_authentication, phone_number, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, role_name, routing_order, routing_order_metadata, sent_date_time, signed_date_time, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, template_locked, template_required, total_tab_count, user_id].hash
793
+ [access_code, access_code_metadata, add_access_code_to_email, additional_notifications, allow_system_override_for_locked_recipient, auto_responded_reason, client_user_id, completed_count, consent_details_list, custom_fields, declined_date_time, declined_reason, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, email_recipient_post_signing_url, embedded_recipient_start_url, error_details, excluded_documents, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, note, note_metadata, phone_authentication, phone_number, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, role_name, routing_order, routing_order_metadata, sent_date_time, signed_date_time, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, template_locked, template_required, total_tab_count, user_id].hash
782
794
  end
783
795
 
784
796
  # Builds the object from hash
@@ -42,6 +42,9 @@ module DocuSign_eSign
42
42
  #
43
43
  attr_accessor :completed_count
44
44
 
45
+ #
46
+ attr_accessor :consent_details_list
47
+
45
48
  # An optional array of strings that allows the sender to provide custom data about the recipient. This information is returned in the envelope status but otherwise not used by DocuSign. Each customField string can be a maximum of 100 characters.
46
49
  attr_accessor :custom_fields
47
50
 
@@ -233,6 +236,7 @@ module DocuSign_eSign
233
236
  :'auto_responded_reason' => :'autoRespondedReason',
234
237
  :'client_user_id' => :'clientUserId',
235
238
  :'completed_count' => :'completedCount',
239
+ :'consent_details_list' => :'consentDetailsList',
236
240
  :'custom_fields' => :'customFields',
237
241
  :'declined_date_time' => :'declinedDateTime',
238
242
  :'declined_reason' => :'declinedReason',
@@ -316,6 +320,7 @@ module DocuSign_eSign
316
320
  :'auto_responded_reason' => :'String',
317
321
  :'client_user_id' => :'String',
318
322
  :'completed_count' => :'String',
323
+ :'consent_details_list' => :'Array<ConsentDetails>',
319
324
  :'custom_fields' => :'Array<String>',
320
325
  :'declined_date_time' => :'String',
321
326
  :'declined_reason' => :'String',
@@ -436,6 +441,12 @@ module DocuSign_eSign
436
441
  self.completed_count = attributes[:'completedCount']
437
442
  end
438
443
 
444
+ if attributes.has_key?(:'consentDetailsList')
445
+ if (value = attributes[:'consentDetailsList']).is_a?(Array)
446
+ self.consent_details_list = value
447
+ end
448
+ end
449
+
439
450
  if attributes.has_key?(:'customFields')
440
451
  if (value = attributes[:'customFields']).is_a?(Array)
441
452
  self.custom_fields = value
@@ -747,6 +758,7 @@ module DocuSign_eSign
747
758
  auto_responded_reason == o.auto_responded_reason &&
748
759
  client_user_id == o.client_user_id &&
749
760
  completed_count == o.completed_count &&
761
+ consent_details_list == o.consent_details_list &&
750
762
  custom_fields == o.custom_fields &&
751
763
  declined_date_time == o.declined_date_time &&
752
764
  declined_reason == o.declined_reason &&
@@ -825,7 +837,7 @@ module DocuSign_eSign
825
837
  # Calculates hash code according to all attributes.
826
838
  # @return [Fixnum] Hash code
827
839
  def hash
828
- [access_code, access_code_metadata, add_access_code_to_email, additional_notifications, agent_can_edit_email, agent_can_edit_name, allow_system_override_for_locked_recipient, auto_responded_reason, client_user_id, completed_count, custom_fields, declined_date_time, declined_reason, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, email_recipient_post_signing_url, embedded_recipient_start_url, error_details, excluded_documents, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, last_name, last_name_metadata, linked_account_configuration_id, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, note, note_metadata, phone_authentication, phone_number, proof_file, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, role_name, routing_order, routing_order_metadata, sent_date_time, signed_date_time, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, tabs, template_locked, template_required, total_tab_count, user_id].hash
840
+ [access_code, access_code_metadata, add_access_code_to_email, additional_notifications, agent_can_edit_email, agent_can_edit_name, allow_system_override_for_locked_recipient, auto_responded_reason, client_user_id, completed_count, consent_details_list, custom_fields, declined_date_time, declined_reason, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, email_recipient_post_signing_url, embedded_recipient_start_url, error_details, excluded_documents, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, last_name, last_name_metadata, linked_account_configuration_id, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, note, note_metadata, phone_authentication, phone_number, proof_file, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, role_name, routing_order, routing_order_metadata, sent_date_time, signed_date_time, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, tabs, template_locked, template_required, total_tab_count, user_id].hash
829
841
  end
830
842
 
831
843
  # Builds the object from hash