docusign_esign 3.1.0.rc2 → 3.2.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/Gemfile +1 -1
  4. data/Gemfile.lock +73 -0
  5. data/lib/docusign_esign.rb +7 -1
  6. data/lib/docusign_esign/api/.DS_Store +0 -0
  7. data/lib/docusign_esign/api/accounts_api.rb +0 -49
  8. data/lib/docusign_esign/api/billing_api.rb +51 -0
  9. data/lib/docusign_esign/api/bulk_envelopes_api.rb +1 -1
  10. data/lib/docusign_esign/api/envelopes_api.rb +3 -3
  11. data/lib/docusign_esign/models/account_billing_plan.rb +10 -1
  12. data/lib/docusign_esign/models/account_billing_plan_response.rb +10 -1
  13. data/lib/docusign_esign/models/account_identity_input_option.rb +208 -0
  14. data/lib/docusign_esign/models/account_identity_verification_workflow.rb +13 -1
  15. data/lib/docusign_esign/models/account_settings_information.rb +96 -1
  16. data/lib/docusign_esign/models/account_ui_settings.rb +20 -1
  17. data/lib/docusign_esign/models/agent.rb +11 -1
  18. data/lib/docusign_esign/models/carbon_copy.rb +11 -1
  19. data/lib/docusign_esign/models/certified_delivery.rb +11 -1
  20. data/lib/docusign_esign/models/connect_custom_configuration.rb +10 -1
  21. data/lib/docusign_esign/models/connect_event_data.rb +210 -0
  22. data/lib/docusign_esign/models/document.rb +11 -11
  23. data/lib/docusign_esign/models/document_fields_information.rb +1 -1
  24. data/lib/docusign_esign/models/downgrade_billing_plan_information.rb +197 -0
  25. data/lib/docusign_esign/models/downgrade_plan_update_response.rb +248 -0
  26. data/lib/docusign_esign/models/draw.rb +911 -0
  27. data/lib/docusign_esign/models/editor.rb +11 -1
  28. data/lib/docusign_esign/models/envelope.rb +11 -1
  29. data/lib/docusign_esign/models/envelope_definition.rb +11 -1
  30. data/lib/docusign_esign/models/envelope_document.rb +1 -11
  31. data/lib/docusign_esign/models/envelope_template.rb +11 -1
  32. data/lib/docusign_esign/models/event_notification.rb +10 -1
  33. data/lib/docusign_esign/models/in_person_signer.rb +11 -1
  34. data/lib/docusign_esign/models/intermediary.rb +11 -1
  35. data/lib/docusign_esign/models/notary_host.rb +11 -1
  36. data/lib/docusign_esign/models/recipient_identity_input_option.rb +210 -0
  37. data/lib/docusign_esign/models/recipient_identity_phone_number.rb +208 -0
  38. data/lib/docusign_esign/models/recipient_identity_verification.rb +13 -1
  39. data/lib/docusign_esign/models/seal_sign.rb +11 -1
  40. data/lib/docusign_esign/models/signer.rb +12 -2
  41. data/lib/docusign_esign/models/tab_account_settings.rb +20 -1
  42. data/lib/docusign_esign/models/tabs.rb +13 -1
  43. data/lib/docusign_esign/models/template_tabs.rb +13 -1
  44. data/lib/docusign_esign/models/usage_history.rb +1 -1
  45. data/lib/docusign_esign/models/user_information.rb +1 -1
  46. data/lib/docusign_esign/models/witness.rb +11 -1
  47. data/lib/docusign_esign/version.rb +1 -1
  48. data/tests/Gemfile.lock +42 -0
  49. data/tests/docs/private.pem +27 -0
  50. metadata +13 -3
  51. data/docusign_esign-4.1.210.gem +0 -0
@@ -20,6 +20,9 @@ module DocuSign_eSign
20
20
  #
21
21
  attr_accessor :default_name
22
22
 
23
+ #
24
+ attr_accessor :input_options
25
+
23
26
  attr_accessor :signature_provider
24
27
 
25
28
  #
@@ -37,6 +40,7 @@ module DocuSign_eSign
37
40
  {
38
41
  :'default_description' => :'defaultDescription',
39
42
  :'default_name' => :'defaultName',
43
+ :'input_options' => :'inputOptions',
40
44
  :'signature_provider' => :'signatureProvider',
41
45
  :'steps' => :'steps',
42
46
  :'workflow_id' => :'workflowId',
@@ -49,6 +53,7 @@ module DocuSign_eSign
49
53
  {
50
54
  :'default_description' => :'String',
51
55
  :'default_name' => :'String',
56
+ :'input_options' => :'Array<AccountIdentityInputOption>',
52
57
  :'signature_provider' => :'AccountSignatureProvider',
53
58
  :'steps' => :'Array<AccountIdentityVerificationStep>',
54
59
  :'workflow_id' => :'String',
@@ -72,6 +77,12 @@ module DocuSign_eSign
72
77
  self.default_name = attributes[:'defaultName']
73
78
  end
74
79
 
80
+ if attributes.has_key?(:'inputOptions')
81
+ if (value = attributes[:'inputOptions']).is_a?(Array)
82
+ self.input_options = value
83
+ end
84
+ end
85
+
75
86
  if attributes.has_key?(:'signatureProvider')
76
87
  self.signature_provider = attributes[:'signatureProvider']
77
88
  end
@@ -112,6 +123,7 @@ module DocuSign_eSign
112
123
  self.class == o.class &&
113
124
  default_description == o.default_description &&
114
125
  default_name == o.default_name &&
126
+ input_options == o.input_options &&
115
127
  signature_provider == o.signature_provider &&
116
128
  steps == o.steps &&
117
129
  workflow_id == o.workflow_id &&
@@ -127,7 +139,7 @@ module DocuSign_eSign
127
139
  # Calculates hash code according to all attributes.
128
140
  # @return [Fixnum] Hash code
129
141
  def hash
130
- [default_description, default_name, signature_provider, steps, workflow_id, workflow_resource_key].hash
142
+ [default_description, default_name, input_options, signature_provider, steps, workflow_id, workflow_resource_key].hash
131
143
  end
132
144
 
133
145
  # Builds the object from hash
@@ -359,6 +359,11 @@ module DocuSign_eSign
359
359
  #
360
360
  attr_accessor :allow_sign_now_metadata
361
361
 
362
+ #
363
+ attr_accessor :allow_sms_delivery
364
+
365
+ attr_accessor :allow_sms_delivery_metadata
366
+
362
367
  #
363
368
  attr_accessor :allow_social_id_login
364
369
 
@@ -369,6 +374,16 @@ module DocuSign_eSign
369
374
 
370
375
  attr_accessor :allow_supplemental_documents_metadata
371
376
 
377
+ #
378
+ attr_accessor :allow_users_to_access_directory
379
+
380
+ attr_accessor :allow_users_to_access_directory_metadata
381
+
382
+ #
383
+ attr_accessor :allow_value_insights
384
+
385
+ attr_accessor :allow_value_insights_metadata
386
+
372
387
  #
373
388
  attr_accessor :anchor_population_scope
374
389
 
@@ -594,6 +609,11 @@ module DocuSign_eSign
594
609
 
595
610
  attr_accessor :enable_clickwraps_metadata
596
611
 
612
+ #
613
+ attr_accessor :enable_comments_history_download_in_signing
614
+
615
+ attr_accessor :enable_comments_history_download_in_signing_metadata
616
+
597
617
  #
598
618
  attr_accessor :enable_customer_satisfaction_metric_tracking
599
619
 
@@ -664,6 +684,11 @@ module DocuSign_eSign
664
684
 
665
685
  attr_accessor :enable_scheduled_release_metadata
666
686
 
687
+ #
688
+ attr_accessor :enable_search_ui
689
+
690
+ attr_accessor :enable_search_ui_metadata
691
+
667
692
  #
668
693
  attr_accessor :enable_sending_tags_font_settings
669
694
 
@@ -1419,10 +1444,16 @@ module DocuSign_eSign
1419
1444
  :'allow_signing_radio_deselect_metadata' => :'allowSigningRadioDeselectMetadata',
1420
1445
  :'allow_sign_now' => :'allowSignNow',
1421
1446
  :'allow_sign_now_metadata' => :'allowSignNowMetadata',
1447
+ :'allow_sms_delivery' => :'allowSMSDelivery',
1448
+ :'allow_sms_delivery_metadata' => :'allowSMSDeliveryMetadata',
1422
1449
  :'allow_social_id_login' => :'allowSocialIdLogin',
1423
1450
  :'allow_social_id_login_metadata' => :'allowSocialIdLoginMetadata',
1424
1451
  :'allow_supplemental_documents' => :'allowSupplementalDocuments',
1425
1452
  :'allow_supplemental_documents_metadata' => :'allowSupplementalDocumentsMetadata',
1453
+ :'allow_users_to_access_directory' => :'allowUsersToAccessDirectory',
1454
+ :'allow_users_to_access_directory_metadata' => :'allowUsersToAccessDirectoryMetadata',
1455
+ :'allow_value_insights' => :'allowValueInsights',
1456
+ :'allow_value_insights_metadata' => :'allowValueInsightsMetadata',
1426
1457
  :'anchor_population_scope' => :'anchorPopulationScope',
1427
1458
  :'anchor_population_scope_metadata' => :'anchorPopulationScopeMetadata',
1428
1459
  :'anchor_tag_versioned_placement_enabled' => :'anchorTagVersionedPlacementEnabled',
@@ -1513,6 +1544,8 @@ module DocuSign_eSign
1513
1544
  :'enable_calculated_fields_metadata' => :'enableCalculatedFieldsMetadata',
1514
1545
  :'enable_clickwraps' => :'enableClickwraps',
1515
1546
  :'enable_clickwraps_metadata' => :'enableClickwrapsMetadata',
1547
+ :'enable_comments_history_download_in_signing' => :'enableCommentsHistoryDownloadInSigning',
1548
+ :'enable_comments_history_download_in_signing_metadata' => :'enableCommentsHistoryDownloadInSigningMetadata',
1516
1549
  :'enable_customer_satisfaction_metric_tracking' => :'enableCustomerSatisfactionMetricTracking',
1517
1550
  :'enable_customer_satisfaction_metric_tracking_metadata' => :'enableCustomerSatisfactionMetricTrackingMetadata',
1518
1551
  :'enable_ds_pro' => :'enableDSPro',
@@ -1541,6 +1574,8 @@ module DocuSign_eSign
1541
1574
  :'enable_responsive_signing_metadata' => :'enableResponsiveSigningMetadata',
1542
1575
  :'enable_scheduled_release' => :'enableScheduledRelease',
1543
1576
  :'enable_scheduled_release_metadata' => :'enableScheduledReleaseMetadata',
1577
+ :'enable_search_ui' => :'enableSearchUI',
1578
+ :'enable_search_ui_metadata' => :'enableSearchUIMetadata',
1544
1579
  :'enable_sending_tags_font_settings' => :'enableSendingTagsFontSettings',
1545
1580
  :'enable_sending_tags_font_settings_metadata' => :'enableSendingTagsFontSettingsMetadata',
1546
1581
  :'enable_send_to_agent' => :'enableSendToAgent',
@@ -1929,10 +1964,16 @@ module DocuSign_eSign
1929
1964
  :'allow_signing_radio_deselect_metadata' => :'SettingsMetadata',
1930
1965
  :'allow_sign_now' => :'String',
1931
1966
  :'allow_sign_now_metadata' => :'String',
1967
+ :'allow_sms_delivery' => :'String',
1968
+ :'allow_sms_delivery_metadata' => :'SettingsMetadata',
1932
1969
  :'allow_social_id_login' => :'String',
1933
1970
  :'allow_social_id_login_metadata' => :'SettingsMetadata',
1934
1971
  :'allow_supplemental_documents' => :'String',
1935
1972
  :'allow_supplemental_documents_metadata' => :'SettingsMetadata',
1973
+ :'allow_users_to_access_directory' => :'String',
1974
+ :'allow_users_to_access_directory_metadata' => :'SettingsMetadata',
1975
+ :'allow_value_insights' => :'String',
1976
+ :'allow_value_insights_metadata' => :'SettingsMetadata',
1936
1977
  :'anchor_population_scope' => :'String',
1937
1978
  :'anchor_population_scope_metadata' => :'SettingsMetadata',
1938
1979
  :'anchor_tag_versioned_placement_enabled' => :'String',
@@ -2023,6 +2064,8 @@ module DocuSign_eSign
2023
2064
  :'enable_calculated_fields_metadata' => :'SettingsMetadata',
2024
2065
  :'enable_clickwraps' => :'String',
2025
2066
  :'enable_clickwraps_metadata' => :'SettingsMetadata',
2067
+ :'enable_comments_history_download_in_signing' => :'String',
2068
+ :'enable_comments_history_download_in_signing_metadata' => :'SettingsMetadata',
2026
2069
  :'enable_customer_satisfaction_metric_tracking' => :'String',
2027
2070
  :'enable_customer_satisfaction_metric_tracking_metadata' => :'SettingsMetadata',
2028
2071
  :'enable_ds_pro' => :'String',
@@ -2051,6 +2094,8 @@ module DocuSign_eSign
2051
2094
  :'enable_responsive_signing_metadata' => :'SettingsMetadata',
2052
2095
  :'enable_scheduled_release' => :'String',
2053
2096
  :'enable_scheduled_release_metadata' => :'SettingsMetadata',
2097
+ :'enable_search_ui' => :'String',
2098
+ :'enable_search_ui_metadata' => :'SettingsMetadata',
2054
2099
  :'enable_sending_tags_font_settings' => :'String',
2055
2100
  :'enable_sending_tags_font_settings_metadata' => :'SettingsMetadata',
2056
2101
  :'enable_send_to_agent' => :'String',
@@ -2858,6 +2903,14 @@ module DocuSign_eSign
2858
2903
  self.allow_sign_now_metadata = attributes[:'allowSignNowMetadata']
2859
2904
  end
2860
2905
 
2906
+ if attributes.has_key?(:'allowSMSDelivery')
2907
+ self.allow_sms_delivery = attributes[:'allowSMSDelivery']
2908
+ end
2909
+
2910
+ if attributes.has_key?(:'allowSMSDeliveryMetadata')
2911
+ self.allow_sms_delivery_metadata = attributes[:'allowSMSDeliveryMetadata']
2912
+ end
2913
+
2861
2914
  if attributes.has_key?(:'allowSocialIdLogin')
2862
2915
  self.allow_social_id_login = attributes[:'allowSocialIdLogin']
2863
2916
  end
@@ -2874,6 +2927,22 @@ module DocuSign_eSign
2874
2927
  self.allow_supplemental_documents_metadata = attributes[:'allowSupplementalDocumentsMetadata']
2875
2928
  end
2876
2929
 
2930
+ if attributes.has_key?(:'allowUsersToAccessDirectory')
2931
+ self.allow_users_to_access_directory = attributes[:'allowUsersToAccessDirectory']
2932
+ end
2933
+
2934
+ if attributes.has_key?(:'allowUsersToAccessDirectoryMetadata')
2935
+ self.allow_users_to_access_directory_metadata = attributes[:'allowUsersToAccessDirectoryMetadata']
2936
+ end
2937
+
2938
+ if attributes.has_key?(:'allowValueInsights')
2939
+ self.allow_value_insights = attributes[:'allowValueInsights']
2940
+ end
2941
+
2942
+ if attributes.has_key?(:'allowValueInsightsMetadata')
2943
+ self.allow_value_insights_metadata = attributes[:'allowValueInsightsMetadata']
2944
+ end
2945
+
2877
2946
  if attributes.has_key?(:'anchorPopulationScope')
2878
2947
  self.anchor_population_scope = attributes[:'anchorPopulationScope']
2879
2948
  end
@@ -3234,6 +3303,14 @@ module DocuSign_eSign
3234
3303
  self.enable_clickwraps_metadata = attributes[:'enableClickwrapsMetadata']
3235
3304
  end
3236
3305
 
3306
+ if attributes.has_key?(:'enableCommentsHistoryDownloadInSigning')
3307
+ self.enable_comments_history_download_in_signing = attributes[:'enableCommentsHistoryDownloadInSigning']
3308
+ end
3309
+
3310
+ if attributes.has_key?(:'enableCommentsHistoryDownloadInSigningMetadata')
3311
+ self.enable_comments_history_download_in_signing_metadata = attributes[:'enableCommentsHistoryDownloadInSigningMetadata']
3312
+ end
3313
+
3237
3314
  if attributes.has_key?(:'enableCustomerSatisfactionMetricTracking')
3238
3315
  self.enable_customer_satisfaction_metric_tracking = attributes[:'enableCustomerSatisfactionMetricTracking']
3239
3316
  end
@@ -3346,6 +3423,14 @@ module DocuSign_eSign
3346
3423
  self.enable_scheduled_release_metadata = attributes[:'enableScheduledReleaseMetadata']
3347
3424
  end
3348
3425
 
3426
+ if attributes.has_key?(:'enableSearchUI')
3427
+ self.enable_search_ui = attributes[:'enableSearchUI']
3428
+ end
3429
+
3430
+ if attributes.has_key?(:'enableSearchUIMetadata')
3431
+ self.enable_search_ui_metadata = attributes[:'enableSearchUIMetadata']
3432
+ end
3433
+
3349
3434
  if attributes.has_key?(:'enableSendingTagsFontSettings')
3350
3435
  self.enable_sending_tags_font_settings = attributes[:'enableSendingTagsFontSettings']
3351
3436
  end
@@ -4486,10 +4571,16 @@ module DocuSign_eSign
4486
4571
  allow_signing_radio_deselect_metadata == o.allow_signing_radio_deselect_metadata &&
4487
4572
  allow_sign_now == o.allow_sign_now &&
4488
4573
  allow_sign_now_metadata == o.allow_sign_now_metadata &&
4574
+ allow_sms_delivery == o.allow_sms_delivery &&
4575
+ allow_sms_delivery_metadata == o.allow_sms_delivery_metadata &&
4489
4576
  allow_social_id_login == o.allow_social_id_login &&
4490
4577
  allow_social_id_login_metadata == o.allow_social_id_login_metadata &&
4491
4578
  allow_supplemental_documents == o.allow_supplemental_documents &&
4492
4579
  allow_supplemental_documents_metadata == o.allow_supplemental_documents_metadata &&
4580
+ allow_users_to_access_directory == o.allow_users_to_access_directory &&
4581
+ allow_users_to_access_directory_metadata == o.allow_users_to_access_directory_metadata &&
4582
+ allow_value_insights == o.allow_value_insights &&
4583
+ allow_value_insights_metadata == o.allow_value_insights_metadata &&
4493
4584
  anchor_population_scope == o.anchor_population_scope &&
4494
4585
  anchor_population_scope_metadata == o.anchor_population_scope_metadata &&
4495
4586
  anchor_tag_versioned_placement_enabled == o.anchor_tag_versioned_placement_enabled &&
@@ -4580,6 +4671,8 @@ module DocuSign_eSign
4580
4671
  enable_calculated_fields_metadata == o.enable_calculated_fields_metadata &&
4581
4672
  enable_clickwraps == o.enable_clickwraps &&
4582
4673
  enable_clickwraps_metadata == o.enable_clickwraps_metadata &&
4674
+ enable_comments_history_download_in_signing == o.enable_comments_history_download_in_signing &&
4675
+ enable_comments_history_download_in_signing_metadata == o.enable_comments_history_download_in_signing_metadata &&
4583
4676
  enable_customer_satisfaction_metric_tracking == o.enable_customer_satisfaction_metric_tracking &&
4584
4677
  enable_customer_satisfaction_metric_tracking_metadata == o.enable_customer_satisfaction_metric_tracking_metadata &&
4585
4678
  enable_ds_pro == o.enable_ds_pro &&
@@ -4608,6 +4701,8 @@ module DocuSign_eSign
4608
4701
  enable_responsive_signing_metadata == o.enable_responsive_signing_metadata &&
4609
4702
  enable_scheduled_release == o.enable_scheduled_release &&
4610
4703
  enable_scheduled_release_metadata == o.enable_scheduled_release_metadata &&
4704
+ enable_search_ui == o.enable_search_ui &&
4705
+ enable_search_ui_metadata == o.enable_search_ui_metadata &&
4611
4706
  enable_sending_tags_font_settings == o.enable_sending_tags_font_settings &&
4612
4707
  enable_sending_tags_font_settings_metadata == o.enable_sending_tags_font_settings_metadata &&
4613
4708
  enable_send_to_agent == o.enable_send_to_agent &&
@@ -4863,7 +4958,7 @@ module DocuSign_eSign
4863
4958
  # Calculates hash code according to all attributes.
4864
4959
  # @return [Fixnum] Hash code
4865
4960
  def hash
4866
- [access_code_format, account_date_time_format, account_date_time_format_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_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_signature_pad, allow_external_signature_pad_metadata, allow_idv_level1, allow_idv_level1_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_reminders, allow_reminders_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_radio_deselect, allow_signing_radio_deselect_metadata, allow_sign_now, allow_sign_now_metadata, allow_social_id_login, allow_social_id_login_metadata, allow_supplemental_documents, allow_supplemental_documents_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_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_auto_nav, enable_auto_nav_metadata, enable_calculated_fields, enable_calculated_fields_metadata, enable_clickwraps, enable_clickwraps_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_in_browser_editor, enable_in_browser_editor_metadata, enable_payment_processing, enable_payment_processing_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_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_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_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, 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, 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_tutorials, show_tutorials_metadata, signature_providers, signature_providers_metadata, sign_date_format, sign_date_format_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
4961
+ [access_code_format, account_date_time_format, account_date_time_format_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_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_signature_pad, allow_external_signature_pad_metadata, allow_idv_level1, allow_idv_level1_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_reminders, allow_reminders_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_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_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_auto_nav, enable_auto_nav_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_in_browser_editor, enable_in_browser_editor_metadata, enable_payment_processing, enable_payment_processing_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_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_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_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, 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, 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_tutorials, show_tutorials_metadata, signature_providers, signature_providers_metadata, sign_date_format, sign_date_format_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
4867
4962
  end
4868
4963
 
4869
4964
  # Builds the object from hash
@@ -33,6 +33,11 @@ module DocuSign_eSign
33
33
 
34
34
  attr_accessor :enable_easy_sign_template_upload_metadata
35
35
 
36
+ #
37
+ attr_accessor :enable_envelope_copy_with_data
38
+
39
+ attr_accessor :enable_envelope_copy_with_data_metadata
40
+
36
41
  #
37
42
  attr_accessor :hide_send_an_envelope
38
43
 
@@ -80,6 +85,8 @@ module DocuSign_eSign
80
85
  :'enable_easy_sign_can_use_multi_template_apply_metadata' => :'enableEasySignCanUseMultiTemplateApplyMetadata',
81
86
  :'enable_easy_sign_template_upload' => :'enableEasySignTemplateUpload',
82
87
  :'enable_easy_sign_template_upload_metadata' => :'enableEasySignTemplateUploadMetadata',
88
+ :'enable_envelope_copy_with_data' => :'enableEnvelopeCopyWithData',
89
+ :'enable_envelope_copy_with_data_metadata' => :'enableEnvelopeCopyWithDataMetadata',
83
90
  :'hide_send_an_envelope' => :'hideSendAnEnvelope',
84
91
  :'hide_send_an_envelope_metadata' => :'hideSendAnEnvelopeMetadata',
85
92
  :'hide_use_a_template' => :'hideUseATemplate',
@@ -108,6 +115,8 @@ module DocuSign_eSign
108
115
  :'enable_easy_sign_can_use_multi_template_apply_metadata' => :'SettingsMetadata',
109
116
  :'enable_easy_sign_template_upload' => :'String',
110
117
  :'enable_easy_sign_template_upload_metadata' => :'SettingsMetadata',
118
+ :'enable_envelope_copy_with_data' => :'String',
119
+ :'enable_envelope_copy_with_data_metadata' => :'SettingsMetadata',
111
120
  :'hide_send_an_envelope' => :'String',
112
121
  :'hide_send_an_envelope_metadata' => :'SettingsMetadata',
113
122
  :'hide_use_a_template' => :'String',
@@ -165,6 +174,14 @@ module DocuSign_eSign
165
174
  self.enable_easy_sign_template_upload_metadata = attributes[:'enableEasySignTemplateUploadMetadata']
166
175
  end
167
176
 
177
+ if attributes.has_key?(:'enableEnvelopeCopyWithData')
178
+ self.enable_envelope_copy_with_data = attributes[:'enableEnvelopeCopyWithData']
179
+ end
180
+
181
+ if attributes.has_key?(:'enableEnvelopeCopyWithDataMetadata')
182
+ self.enable_envelope_copy_with_data_metadata = attributes[:'enableEnvelopeCopyWithDataMetadata']
183
+ end
184
+
168
185
  if attributes.has_key?(:'hideSendAnEnvelope')
169
186
  self.hide_send_an_envelope = attributes[:'hideSendAnEnvelope']
170
187
  end
@@ -249,6 +266,8 @@ module DocuSign_eSign
249
266
  enable_easy_sign_can_use_multi_template_apply_metadata == o.enable_easy_sign_can_use_multi_template_apply_metadata &&
250
267
  enable_easy_sign_template_upload == o.enable_easy_sign_template_upload &&
251
268
  enable_easy_sign_template_upload_metadata == o.enable_easy_sign_template_upload_metadata &&
269
+ enable_envelope_copy_with_data == o.enable_envelope_copy_with_data &&
270
+ enable_envelope_copy_with_data_metadata == o.enable_envelope_copy_with_data_metadata &&
252
271
  hide_send_an_envelope == o.hide_send_an_envelope &&
253
272
  hide_send_an_envelope_metadata == o.hide_send_an_envelope_metadata &&
254
273
  hide_use_a_template == o.hide_use_a_template &&
@@ -274,7 +293,7 @@ module DocuSign_eSign
274
293
  # Calculates hash code according to all attributes.
275
294
  # @return [Fixnum] Hash code
276
295
  def hash
277
- [admin_message, ask_an_admin, enable_admin_message, enable_admin_message_metadata, enable_easy_sign_can_use_multi_template_apply, enable_easy_sign_can_use_multi_template_apply_metadata, enable_easy_sign_template_upload, enable_easy_sign_template_upload_metadata, hide_send_an_envelope, hide_send_an_envelope_metadata, hide_use_a_template, hide_use_a_template_in_prepare, hide_use_a_template_in_prepare_metadata, hide_use_a_template_metadata, order_based_recipient_id_generation, order_based_recipient_id_generation_metadata, remove_envelope_forwarding, remove_envelope_forwarding_metadata, should_redact_access_code, should_redact_access_code_metadata, upload_new_image_to_sign_or_initial, upload_new_image_to_sign_or_initial_metadata].hash
296
+ [admin_message, ask_an_admin, enable_admin_message, enable_admin_message_metadata, enable_easy_sign_can_use_multi_template_apply, enable_easy_sign_can_use_multi_template_apply_metadata, enable_easy_sign_template_upload, enable_easy_sign_template_upload_metadata, enable_envelope_copy_with_data, enable_envelope_copy_with_data_metadata, hide_send_an_envelope, hide_send_an_envelope_metadata, hide_use_a_template, hide_use_a_template_in_prepare, hide_use_a_template_in_prepare_metadata, hide_use_a_template_metadata, order_based_recipient_id_generation, order_based_recipient_id_generation_metadata, remove_envelope_forwarding, remove_envelope_forwarding_metadata, should_redact_access_code, should_redact_access_code_metadata, upload_new_image_to_sign_or_initial, upload_new_image_to_sign_or_initial_metadata].hash
278
297
  end
279
298
 
280
299
  # Builds the object from hash
@@ -22,6 +22,9 @@ module DocuSign_eSign
22
22
  # This Optional attribute indicates that the access code will be added to the email sent to the recipient; this nullifies the Security measure of Access Code on the recipient.
23
23
  attr_accessor :add_access_code_to_email
24
24
 
25
+ #
26
+ attr_accessor :allow_system_override_for_locked_recipient
27
+
25
28
  # Specifies whether the recipient is embedded or remote. If the `clientUserId` property is not null then the recipient is embedded. Note that if the `ClientUserId` property is set and either `SignerMustHaveAccount` or `SignerMustLoginToSign` property of the account settings is set to **true**, an error is generated on sending.ng. Maximum length: 100 characters.
26
29
  attr_accessor :client_user_id
27
30
 
@@ -199,6 +202,7 @@ module DocuSign_eSign
199
202
  :'access_code' => :'accessCode',
200
203
  :'access_code_metadata' => :'accessCodeMetadata',
201
204
  :'add_access_code_to_email' => :'addAccessCodeToEmail',
205
+ :'allow_system_override_for_locked_recipient' => :'allowSystemOverrideForLockedRecipient',
202
206
  :'client_user_id' => :'clientUserId',
203
207
  :'completed_count' => :'completedCount',
204
208
  :'custom_fields' => :'customFields',
@@ -271,6 +275,7 @@ module DocuSign_eSign
271
275
  :'access_code' => :'String',
272
276
  :'access_code_metadata' => :'PropertyMetadata',
273
277
  :'add_access_code_to_email' => :'String',
278
+ :'allow_system_override_for_locked_recipient' => :'String',
274
279
  :'client_user_id' => :'String',
275
280
  :'completed_count' => :'String',
276
281
  :'custom_fields' => :'Array<String>',
@@ -357,6 +362,10 @@ module DocuSign_eSign
357
362
  self.add_access_code_to_email = attributes[:'addAccessCodeToEmail']
358
363
  end
359
364
 
365
+ if attributes.has_key?(:'allowSystemOverrideForLockedRecipient')
366
+ self.allow_system_override_for_locked_recipient = attributes[:'allowSystemOverrideForLockedRecipient']
367
+ end
368
+
360
369
  if attributes.has_key?(:'clientUserId')
361
370
  self.client_user_id = attributes[:'clientUserId']
362
371
  end
@@ -646,6 +655,7 @@ module DocuSign_eSign
646
655
  access_code == o.access_code &&
647
656
  access_code_metadata == o.access_code_metadata &&
648
657
  add_access_code_to_email == o.add_access_code_to_email &&
658
+ allow_system_override_for_locked_recipient == o.allow_system_override_for_locked_recipient &&
649
659
  client_user_id == o.client_user_id &&
650
660
  completed_count == o.completed_count &&
651
661
  custom_fields == o.custom_fields &&
@@ -720,7 +730,7 @@ module DocuSign_eSign
720
730
  # Calculates hash code according to all attributes.
721
731
  # @return [Fixnum] Hash code
722
732
  def hash
723
- [access_code, access_code_metadata, add_access_code_to_email, 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, 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, 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, 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
733
+ [access_code, access_code_metadata, add_access_code_to_email, allow_system_override_for_locked_recipient, 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, 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, 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, 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
724
734
  end
725
735
 
726
736
  # Builds the object from hash
@@ -28,6 +28,9 @@ module DocuSign_eSign
28
28
  #
29
29
  attr_accessor :agent_can_edit_name
30
30
 
31
+ #
32
+ attr_accessor :allow_system_override_for_locked_recipient
33
+
31
34
  # Specifies whether the recipient is embedded or remote. If the `clientUserId` property is not null then the recipient is embedded. Note that if the `ClientUserId` property is set and either `SignerMustHaveAccount` or `SignerMustLoginToSign` property of the account settings is set to **true**, an error is generated on sending.ng. Maximum length: 100 characters.
32
35
  attr_accessor :client_user_id
33
36
 
@@ -213,6 +216,7 @@ module DocuSign_eSign
213
216
  :'add_access_code_to_email' => :'addAccessCodeToEmail',
214
217
  :'agent_can_edit_email' => :'agentCanEditEmail',
215
218
  :'agent_can_edit_name' => :'agentCanEditName',
219
+ :'allow_system_override_for_locked_recipient' => :'allowSystemOverrideForLockedRecipient',
216
220
  :'client_user_id' => :'clientUserId',
217
221
  :'completed_count' => :'completedCount',
218
222
  :'custom_fields' => :'customFields',
@@ -290,6 +294,7 @@ module DocuSign_eSign
290
294
  :'add_access_code_to_email' => :'String',
291
295
  :'agent_can_edit_email' => :'String',
292
296
  :'agent_can_edit_name' => :'String',
297
+ :'allow_system_override_for_locked_recipient' => :'String',
293
298
  :'client_user_id' => :'String',
294
299
  :'completed_count' => :'String',
295
300
  :'custom_fields' => :'Array<String>',
@@ -387,6 +392,10 @@ module DocuSign_eSign
387
392
  self.agent_can_edit_name = attributes[:'agentCanEditName']
388
393
  end
389
394
 
395
+ if attributes.has_key?(:'allowSystemOverrideForLockedRecipient')
396
+ self.allow_system_override_for_locked_recipient = attributes[:'allowSystemOverrideForLockedRecipient']
397
+ end
398
+
390
399
  if attributes.has_key?(:'clientUserId')
391
400
  self.client_user_id = attributes[:'clientUserId']
392
401
  end
@@ -690,6 +699,7 @@ module DocuSign_eSign
690
699
  add_access_code_to_email == o.add_access_code_to_email &&
691
700
  agent_can_edit_email == o.agent_can_edit_email &&
692
701
  agent_can_edit_name == o.agent_can_edit_name &&
702
+ allow_system_override_for_locked_recipient == o.allow_system_override_for_locked_recipient &&
693
703
  client_user_id == o.client_user_id &&
694
704
  completed_count == o.completed_count &&
695
705
  custom_fields == o.custom_fields &&
@@ -767,7 +777,7 @@ module DocuSign_eSign
767
777
  # Calculates hash code according to all attributes.
768
778
  # @return [Fixnum] Hash code
769
779
  def hash
770
- [access_code, access_code_metadata, add_access_code_to_email, agent_can_edit_email, agent_can_edit_name, 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, 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, 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
780
+ [access_code, access_code_metadata, add_access_code_to_email, agent_can_edit_email, agent_can_edit_name, allow_system_override_for_locked_recipient, 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, 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, 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
771
781
  end
772
782
 
773
783
  # Builds the object from hash
@@ -28,6 +28,9 @@ module DocuSign_eSign
28
28
  #
29
29
  attr_accessor :agent_can_edit_name
30
30
 
31
+ #
32
+ attr_accessor :allow_system_override_for_locked_recipient
33
+
31
34
  # Specifies whether the recipient is embedded or remote. If the `clientUserId` property is not null then the recipient is embedded. Note that if the `ClientUserId` property is set and either `SignerMustHaveAccount` or `SignerMustLoginToSign` property of the account settings is set to **true**, an error is generated on sending.ng. Maximum length: 100 characters.
32
35
  attr_accessor :client_user_id
33
36
 
@@ -211,6 +214,7 @@ module DocuSign_eSign
211
214
  :'add_access_code_to_email' => :'addAccessCodeToEmail',
212
215
  :'agent_can_edit_email' => :'agentCanEditEmail',
213
216
  :'agent_can_edit_name' => :'agentCanEditName',
217
+ :'allow_system_override_for_locked_recipient' => :'allowSystemOverrideForLockedRecipient',
214
218
  :'client_user_id' => :'clientUserId',
215
219
  :'completed_count' => :'completedCount',
216
220
  :'custom_fields' => :'customFields',
@@ -287,6 +291,7 @@ module DocuSign_eSign
287
291
  :'add_access_code_to_email' => :'String',
288
292
  :'agent_can_edit_email' => :'String',
289
293
  :'agent_can_edit_name' => :'String',
294
+ :'allow_system_override_for_locked_recipient' => :'String',
290
295
  :'client_user_id' => :'String',
291
296
  :'completed_count' => :'String',
292
297
  :'custom_fields' => :'Array<String>',
@@ -383,6 +388,10 @@ module DocuSign_eSign
383
388
  self.agent_can_edit_name = attributes[:'agentCanEditName']
384
389
  end
385
390
 
391
+ if attributes.has_key?(:'allowSystemOverrideForLockedRecipient')
392
+ self.allow_system_override_for_locked_recipient = attributes[:'allowSystemOverrideForLockedRecipient']
393
+ end
394
+
386
395
  if attributes.has_key?(:'clientUserId')
387
396
  self.client_user_id = attributes[:'clientUserId']
388
397
  end
@@ -682,6 +691,7 @@ module DocuSign_eSign
682
691
  add_access_code_to_email == o.add_access_code_to_email &&
683
692
  agent_can_edit_email == o.agent_can_edit_email &&
684
693
  agent_can_edit_name == o.agent_can_edit_name &&
694
+ allow_system_override_for_locked_recipient == o.allow_system_override_for_locked_recipient &&
685
695
  client_user_id == o.client_user_id &&
686
696
  completed_count == o.completed_count &&
687
697
  custom_fields == o.custom_fields &&
@@ -758,7 +768,7 @@ module DocuSign_eSign
758
768
  # Calculates hash code according to all attributes.
759
769
  # @return [Fixnum] Hash code
760
770
  def hash
761
- [access_code, access_code_metadata, add_access_code_to_email, agent_can_edit_email, agent_can_edit_name, 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, 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, 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, template_locked, template_required, total_tab_count, user_id].hash
771
+ [access_code, access_code_metadata, add_access_code_to_email, agent_can_edit_email, agent_can_edit_name, allow_system_override_for_locked_recipient, 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, 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, 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, template_locked, template_required, total_tab_count, user_id].hash
762
772
  end
763
773
 
764
774
  # Builds the object from hash