docusign_esign 3.24.0 → 3.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/docusign_esign/api/accounts_api.rb +39 -13
- data/lib/docusign_esign/api/envelopes_api.rb +13 -8
- data/lib/docusign_esign/api/templates_api.rb +4 -0
- data/lib/docusign_esign/client/api_client.rb +8 -3
- data/lib/docusign_esign/models/account_identity_verification_workflow.rb +21 -1
- data/lib/docusign_esign/models/account_role_settings.rb +101 -1
- data/lib/docusign_esign/models/account_settings_information.rb +237 -27
- data/lib/docusign_esign/models/brand.rb +21 -1
- data/lib/docusign_esign/models/delayed_routing.rb +1 -1
- data/lib/docusign_esign/models/envelope_document.rb +11 -1
- data/lib/docusign_esign/models/envelope_template.rb +11 -1
- data/lib/docusign_esign/models/envelopes_information.rb +11 -1
- data/lib/docusign_esign/models/initial_here.rb +1 -1
- data/lib/docusign_esign/models/notary_recipient.rb +11 -1
- data/lib/docusign_esign/models/offline_attributes.rb +1 -1
- data/lib/docusign_esign/models/scheduled_sending.rb +1 -1
- data/lib/docusign_esign/models/user_settings_information.rb +101 -1
- data/lib/docusign_esign/version.rb +1 -1
- metadata +2 -2
@@ -38,6 +38,9 @@ module DocuSign_eSign
|
|
38
38
|
# Array or errors.
|
39
39
|
attr_accessor :error_details
|
40
40
|
|
41
|
+
#
|
42
|
+
attr_accessor :is_organization_brand
|
43
|
+
|
41
44
|
#
|
42
45
|
attr_accessor :is_overriding_company_name
|
43
46
|
|
@@ -56,6 +59,9 @@ module DocuSign_eSign
|
|
56
59
|
# The URIs for retrieving the logos that are associated with the brand.
|
57
60
|
attr_accessor :logos
|
58
61
|
|
62
|
+
#
|
63
|
+
attr_accessor :organization_brand_logo
|
64
|
+
|
59
65
|
# An object containing the URLs for the four DocuSign master resource files that the brand uses for sending, signing, email messages, and captive (embedded) signing. You can modify the default email messages and formats in these file to customize the user experience. **Note:** This object is returned only when the `resourceContentType` is `sending`, `signing`, `email`, or `signing_captive`.
|
60
66
|
attr_accessor :resources
|
61
67
|
|
@@ -70,12 +76,14 @@ module DocuSign_eSign
|
|
70
76
|
:'default_brand_language' => :'defaultBrandLanguage',
|
71
77
|
:'email_content' => :'emailContent',
|
72
78
|
:'error_details' => :'errorDetails',
|
79
|
+
:'is_organization_brand' => :'isOrganizationBrand',
|
73
80
|
:'is_overriding_company_name' => :'isOverridingCompanyName',
|
74
81
|
:'is_sending_default' => :'isSendingDefault',
|
75
82
|
:'is_signing_default' => :'isSigningDefault',
|
76
83
|
:'landing_pages' => :'landingPages',
|
77
84
|
:'links' => :'links',
|
78
85
|
:'logos' => :'logos',
|
86
|
+
:'organization_brand_logo' => :'organizationBrandLogo',
|
79
87
|
:'resources' => :'resources'
|
80
88
|
}
|
81
89
|
end
|
@@ -91,12 +99,14 @@ module DocuSign_eSign
|
|
91
99
|
:'default_brand_language' => :'String',
|
92
100
|
:'email_content' => :'Array<BrandEmailContent>',
|
93
101
|
:'error_details' => :'ErrorDetails',
|
102
|
+
:'is_organization_brand' => :'String',
|
94
103
|
:'is_overriding_company_name' => :'BOOLEAN',
|
95
104
|
:'is_sending_default' => :'BOOLEAN',
|
96
105
|
:'is_signing_default' => :'BOOLEAN',
|
97
106
|
:'landing_pages' => :'Array<NameValue>',
|
98
107
|
:'links' => :'Array<BrandLink>',
|
99
108
|
:'logos' => :'BrandLogos',
|
109
|
+
:'organization_brand_logo' => :'String',
|
100
110
|
:'resources' => :'BrandResourceUrls'
|
101
111
|
}
|
102
112
|
end
|
@@ -147,6 +157,10 @@ module DocuSign_eSign
|
|
147
157
|
self.error_details = attributes[:'errorDetails']
|
148
158
|
end
|
149
159
|
|
160
|
+
if attributes.has_key?(:'isOrganizationBrand')
|
161
|
+
self.is_organization_brand = attributes[:'isOrganizationBrand']
|
162
|
+
end
|
163
|
+
|
150
164
|
if attributes.has_key?(:'isOverridingCompanyName')
|
151
165
|
self.is_overriding_company_name = attributes[:'isOverridingCompanyName']
|
152
166
|
end
|
@@ -175,6 +189,10 @@ module DocuSign_eSign
|
|
175
189
|
self.logos = attributes[:'logos']
|
176
190
|
end
|
177
191
|
|
192
|
+
if attributes.has_key?(:'organizationBrandLogo')
|
193
|
+
self.organization_brand_logo = attributes[:'organizationBrandLogo']
|
194
|
+
end
|
195
|
+
|
178
196
|
if attributes.has_key?(:'resources')
|
179
197
|
self.resources = attributes[:'resources']
|
180
198
|
end
|
@@ -206,12 +224,14 @@ module DocuSign_eSign
|
|
206
224
|
default_brand_language == o.default_brand_language &&
|
207
225
|
email_content == o.email_content &&
|
208
226
|
error_details == o.error_details &&
|
227
|
+
is_organization_brand == o.is_organization_brand &&
|
209
228
|
is_overriding_company_name == o.is_overriding_company_name &&
|
210
229
|
is_sending_default == o.is_sending_default &&
|
211
230
|
is_signing_default == o.is_signing_default &&
|
212
231
|
landing_pages == o.landing_pages &&
|
213
232
|
links == o.links &&
|
214
233
|
logos == o.logos &&
|
234
|
+
organization_brand_logo == o.organization_brand_logo &&
|
215
235
|
resources == o.resources
|
216
236
|
end
|
217
237
|
|
@@ -224,7 +244,7 @@ module DocuSign_eSign
|
|
224
244
|
# Calculates hash code according to all attributes.
|
225
245
|
# @return [Fixnum] Hash code
|
226
246
|
def hash
|
227
|
-
[brand_company, brand_id, brand_languages, brand_name, colors, default_brand_language, email_content, error_details, is_overriding_company_name, is_sending_default, is_signing_default, landing_pages, links, logos, resources].hash
|
247
|
+
[brand_company, brand_id, brand_languages, brand_name, colors, default_brand_language, email_content, error_details, is_organization_brand, is_overriding_company_name, is_sending_default, is_signing_default, landing_pages, links, logos, organization_brand_logo, resources].hash
|
228
248
|
end
|
229
249
|
|
230
250
|
# Builds the object from hash
|
@@ -19,7 +19,7 @@ module DocuSign_eSign
|
|
19
19
|
# A list of envelope delay rules specified by the user indicating how and when the envelope should be sent in the future for the current workflow step and its associated recipients. Currently only 1 rule may be specified.
|
20
20
|
attr_accessor :rules
|
21
21
|
|
22
|
-
#
|
22
|
+
# Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later.
|
23
23
|
attr_accessor :status
|
24
24
|
|
25
25
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -68,6 +68,9 @@ module DocuSign_eSign
|
|
68
68
|
# Metadata that indicates if the sender can edit the `includeInDownload` property. Not applicable for template documents.
|
69
69
|
attr_accessor :include_in_download_metadata
|
70
70
|
|
71
|
+
#
|
72
|
+
attr_accessor :is_ace_gen_document
|
73
|
+
|
71
74
|
#
|
72
75
|
attr_accessor :is_doc_gen_document
|
73
76
|
|
@@ -125,6 +128,7 @@ module DocuSign_eSign
|
|
125
128
|
:'error_details' => :'errorDetails',
|
126
129
|
:'include_in_download' => :'includeInDownload',
|
127
130
|
:'include_in_download_metadata' => :'includeInDownloadMetadata',
|
131
|
+
:'is_ace_gen_document' => :'isAceGenDocument',
|
128
132
|
:'is_doc_gen_document' => :'isDocGenDocument',
|
129
133
|
:'name' => :'name',
|
130
134
|
:'name_metadata' => :'nameMetadata',
|
@@ -161,6 +165,7 @@ module DocuSign_eSign
|
|
161
165
|
:'error_details' => :'ErrorDetails',
|
162
166
|
:'include_in_download' => :'String',
|
163
167
|
:'include_in_download_metadata' => :'PropertyMetadata',
|
168
|
+
:'is_ace_gen_document' => :'String',
|
164
169
|
:'is_doc_gen_document' => :'String',
|
165
170
|
:'name' => :'String',
|
166
171
|
:'name_metadata' => :'PropertyMetadata',
|
@@ -266,6 +271,10 @@ module DocuSign_eSign
|
|
266
271
|
self.include_in_download_metadata = attributes[:'includeInDownloadMetadata']
|
267
272
|
end
|
268
273
|
|
274
|
+
if attributes.has_key?(:'isAceGenDocument')
|
275
|
+
self.is_ace_gen_document = attributes[:'isAceGenDocument']
|
276
|
+
end
|
277
|
+
|
269
278
|
if attributes.has_key?(:'isDocGenDocument')
|
270
279
|
self.is_doc_gen_document = attributes[:'isDocGenDocument']
|
271
280
|
end
|
@@ -353,6 +362,7 @@ module DocuSign_eSign
|
|
353
362
|
error_details == o.error_details &&
|
354
363
|
include_in_download == o.include_in_download &&
|
355
364
|
include_in_download_metadata == o.include_in_download_metadata &&
|
365
|
+
is_ace_gen_document == o.is_ace_gen_document &&
|
356
366
|
is_doc_gen_document == o.is_doc_gen_document &&
|
357
367
|
name == o.name &&
|
358
368
|
name_metadata == o.name_metadata &&
|
@@ -376,7 +386,7 @@ module DocuSign_eSign
|
|
376
386
|
# Calculates hash code according to all attributes.
|
377
387
|
# @return [Fixnum] Hash code
|
378
388
|
def hash
|
379
|
-
[added_recipient_ids, attachment_tab_id, authoritative_copy, authoritative_copy_metadata, available_document_types, contains_pdf_form_fields, display, display_metadata, doc_gen_document_status, doc_gen_errors, doc_gen_form_fields, document_base64, document_fields, document_id, document_id_guid, error_details, include_in_download, include_in_download_metadata, is_doc_gen_document, name, name_metadata, order, pages, signer_must_acknowledge, signer_must_acknowledge_metadata, size_bytes, template_locked, template_required, type, uri].hash
|
389
|
+
[added_recipient_ids, attachment_tab_id, authoritative_copy, authoritative_copy_metadata, available_document_types, contains_pdf_form_fields, display, display_metadata, doc_gen_document_status, doc_gen_errors, doc_gen_form_fields, document_base64, document_fields, document_id, document_id_guid, error_details, include_in_download, include_in_download_metadata, is_ace_gen_document, is_doc_gen_document, name, name_metadata, order, pages, signer_must_acknowledge, signer_must_acknowledge_metadata, size_bytes, template_locked, template_required, type, uri].hash
|
380
390
|
end
|
381
391
|
|
382
392
|
# Builds the object from hash
|
@@ -193,6 +193,9 @@ module DocuSign_eSign
|
|
193
193
|
# When set to **true**, indicates that this module is enabled on the account.
|
194
194
|
attr_accessor :is21_cfr_part11
|
195
195
|
|
196
|
+
#
|
197
|
+
attr_accessor :is_ace_gen_template
|
198
|
+
|
196
199
|
#
|
197
200
|
attr_accessor :is_doc_gen_template
|
198
201
|
|
@@ -382,6 +385,7 @@ module DocuSign_eSign
|
|
382
385
|
:'holder' => :'holder',
|
383
386
|
:'initial_sent_date_time' => :'initialSentDateTime',
|
384
387
|
:'is21_cfr_part11' => :'is21CFRPart11',
|
388
|
+
:'is_ace_gen_template' => :'isAceGenTemplate',
|
385
389
|
:'is_doc_gen_template' => :'isDocGenTemplate',
|
386
390
|
:'is_dynamic_envelope' => :'isDynamicEnvelope',
|
387
391
|
:'is_signature_provider_envelope' => :'isSignatureProviderEnvelope',
|
@@ -490,6 +494,7 @@ module DocuSign_eSign
|
|
490
494
|
:'holder' => :'String',
|
491
495
|
:'initial_sent_date_time' => :'String',
|
492
496
|
:'is21_cfr_part11' => :'String',
|
497
|
+
:'is_ace_gen_template' => :'String',
|
493
498
|
:'is_doc_gen_template' => :'String',
|
494
499
|
:'is_dynamic_envelope' => :'String',
|
495
500
|
:'is_signature_provider_envelope' => :'String',
|
@@ -793,6 +798,10 @@ module DocuSign_eSign
|
|
793
798
|
self.is21_cfr_part11 = attributes[:'is21CFRPart11']
|
794
799
|
end
|
795
800
|
|
801
|
+
if attributes.has_key?(:'isAceGenTemplate')
|
802
|
+
self.is_ace_gen_template = attributes[:'isAceGenTemplate']
|
803
|
+
end
|
804
|
+
|
796
805
|
if attributes.has_key?(:'isDocGenTemplate')
|
797
806
|
self.is_doc_gen_template = attributes[:'isDocGenTemplate']
|
798
807
|
end
|
@@ -1042,6 +1051,7 @@ module DocuSign_eSign
|
|
1042
1051
|
holder == o.holder &&
|
1043
1052
|
initial_sent_date_time == o.initial_sent_date_time &&
|
1044
1053
|
is21_cfr_part11 == o.is21_cfr_part11 &&
|
1054
|
+
is_ace_gen_template == o.is_ace_gen_template &&
|
1045
1055
|
is_doc_gen_template == o.is_doc_gen_template &&
|
1046
1056
|
is_dynamic_envelope == o.is_dynamic_envelope &&
|
1047
1057
|
is_signature_provider_envelope == o.is_signature_provider_envelope &&
|
@@ -1095,7 +1105,7 @@ module DocuSign_eSign
|
|
1095
1105
|
# Calculates hash code according to all attributes.
|
1096
1106
|
# @return [Fixnum] Hash code
|
1097
1107
|
def hash
|
1098
|
-
[access_control_list_base64, allow_comments, allow_markup, allow_reassign, allow_view_history, any_signer, asynchronous, attachments_uri, authoritative_copy, authoritative_copy_default, auto_match, auto_match_specified_by_user, auto_navigation, brand_id, brand_lock, burn_default_tab_data, certificate_uri, completed_date_time, copy_recipient_data, created, created_date_time, custom_fields, custom_fields_uri, declined_date_time, deleted_date_time, delivered_date_time, description, disable_responsive_document, document_base64, documents, documents_combined_uri, documents_uri, email_blurb, email_settings, email_subject, enable_wet_sign, enforce_signer_visibility, envelope_attachments, envelope_custom_metadata, envelope_documents, envelope_id, envelope_id_stamping, envelope_location, envelope_metadata, envelope_uri, expire_after, expire_date_time, expire_enabled, external_envelope_id, favorited_by_me, folder_id, folder_ids, folder_name, folders, has_comments, has_form_data_changed, has_wav_file, holder, initial_sent_date_time, is21_cfr_part11, is_doc_gen_template, is_dynamic_envelope, is_signature_provider_envelope, last_modified, last_modified_by, last_modified_date_time, last_used, location, lock_information, message_lock, name, new_password, notification, notification_uri, owner, page_count, password, password_protected, power_form, power_forms, purge_completed_date, purge_request_date, purge_state, recipients, recipients_lock, recipients_uri, sender, sent_date_time, shared, signer_can_sign_on_mobile, signing_location, status, status_changed_date_time, status_date_time, template_id, templates_uri, transaction_id, uri, use_disclosure, voided_date_time, voided_reason, workflow].hash
|
1108
|
+
[access_control_list_base64, allow_comments, allow_markup, allow_reassign, allow_view_history, any_signer, asynchronous, attachments_uri, authoritative_copy, authoritative_copy_default, auto_match, auto_match_specified_by_user, auto_navigation, brand_id, brand_lock, burn_default_tab_data, certificate_uri, completed_date_time, copy_recipient_data, created, created_date_time, custom_fields, custom_fields_uri, declined_date_time, deleted_date_time, delivered_date_time, description, disable_responsive_document, document_base64, documents, documents_combined_uri, documents_uri, email_blurb, email_settings, email_subject, enable_wet_sign, enforce_signer_visibility, envelope_attachments, envelope_custom_metadata, envelope_documents, envelope_id, envelope_id_stamping, envelope_location, envelope_metadata, envelope_uri, expire_after, expire_date_time, expire_enabled, external_envelope_id, favorited_by_me, folder_id, folder_ids, folder_name, folders, has_comments, has_form_data_changed, has_wav_file, holder, initial_sent_date_time, is21_cfr_part11, is_ace_gen_template, is_doc_gen_template, is_dynamic_envelope, is_signature_provider_envelope, last_modified, last_modified_by, last_modified_date_time, last_used, location, lock_information, message_lock, name, new_password, notification, notification_uri, owner, page_count, password, password_protected, power_form, power_forms, purge_completed_date, purge_request_date, purge_state, recipients, recipients_lock, recipients_uri, sender, sent_date_time, shared, signer_can_sign_on_mobile, signing_location, status, status_changed_date_time, status_date_time, template_id, templates_uri, transaction_id, uri, use_disclosure, voided_date_time, voided_reason, workflow].hash
|
1099
1109
|
end
|
1100
1110
|
|
1101
1111
|
# Builds the object from hash
|
@@ -23,6 +23,9 @@ module DocuSign_eSign
|
|
23
23
|
#
|
24
24
|
attr_accessor :envelopes
|
25
25
|
|
26
|
+
#
|
27
|
+
attr_accessor :envelope_search_source
|
28
|
+
|
26
29
|
#
|
27
30
|
attr_accessor :envelope_transaction_statuses
|
28
31
|
|
@@ -53,6 +56,7 @@ module DocuSign_eSign
|
|
53
56
|
:'continuation_token' => :'continuationToken',
|
54
57
|
:'end_position' => :'endPosition',
|
55
58
|
:'envelopes' => :'envelopes',
|
59
|
+
:'envelope_search_source' => :'envelopeSearchSource',
|
56
60
|
:'envelope_transaction_statuses' => :'envelopeTransactionStatuses',
|
57
61
|
:'folders' => :'folders',
|
58
62
|
:'last_queried_date_time' => :'lastQueriedDateTime',
|
@@ -70,6 +74,7 @@ module DocuSign_eSign
|
|
70
74
|
:'continuation_token' => :'String',
|
71
75
|
:'end_position' => :'String',
|
72
76
|
:'envelopes' => :'Array<Envelope>',
|
77
|
+
:'envelope_search_source' => :'String',
|
73
78
|
:'envelope_transaction_statuses' => :'Array<EnvelopeTransactionStatus>',
|
74
79
|
:'folders' => :'Array<Folder>',
|
75
80
|
:'last_queried_date_time' => :'String',
|
@@ -103,6 +108,10 @@ module DocuSign_eSign
|
|
103
108
|
end
|
104
109
|
end
|
105
110
|
|
111
|
+
if attributes.has_key?(:'envelopeSearchSource')
|
112
|
+
self.envelope_search_source = attributes[:'envelopeSearchSource']
|
113
|
+
end
|
114
|
+
|
106
115
|
if attributes.has_key?(:'envelopeTransactionStatuses')
|
107
116
|
if (value = attributes[:'envelopeTransactionStatuses']).is_a?(Array)
|
108
117
|
self.envelope_transaction_statuses = value
|
@@ -161,6 +170,7 @@ module DocuSign_eSign
|
|
161
170
|
continuation_token == o.continuation_token &&
|
162
171
|
end_position == o.end_position &&
|
163
172
|
envelopes == o.envelopes &&
|
173
|
+
envelope_search_source == o.envelope_search_source &&
|
164
174
|
envelope_transaction_statuses == o.envelope_transaction_statuses &&
|
165
175
|
folders == o.folders &&
|
166
176
|
last_queried_date_time == o.last_queried_date_time &&
|
@@ -180,7 +190,7 @@ module DocuSign_eSign
|
|
180
190
|
# Calculates hash code according to all attributes.
|
181
191
|
# @return [Fixnum] Hash code
|
182
192
|
def hash
|
183
|
-
[continuation_token, end_position, envelopes, envelope_transaction_statuses, folders, last_queried_date_time, next_uri, previous_uri, result_set_size, start_position, total_set_size].hash
|
193
|
+
[continuation_token, end_position, envelopes, envelope_search_source, envelope_transaction_statuses, folders, last_queried_date_time, next_uri, previous_uri, result_set_size, start_position, total_set_size].hash
|
184
194
|
end
|
185
195
|
|
186
196
|
# Builds the object from hash
|
@@ -170,7 +170,7 @@ module DocuSign_eSign
|
|
170
170
|
# Metadata that indicates whether the `recipientId` property is editable.
|
171
171
|
attr_accessor :recipient_id_metadata
|
172
172
|
|
173
|
-
#
|
173
|
+
# Sets the size for the InitialHere tab. It can be value from 0.5 to 1.0, where 1.0 represents full size and 0.5 is 50% size.
|
174
174
|
attr_accessor :scale_value
|
175
175
|
|
176
176
|
# Metadata that indicates whether the `scaleValue` property is editable.
|
@@ -190,6 +190,9 @@ module DocuSign_eSign
|
|
190
190
|
#
|
191
191
|
attr_accessor :notary_source_type
|
192
192
|
|
193
|
+
#
|
194
|
+
attr_accessor :notary_third_party_partner
|
195
|
+
|
193
196
|
#
|
194
197
|
attr_accessor :notary_type
|
195
198
|
|
@@ -381,6 +384,7 @@ module DocuSign_eSign
|
|
381
384
|
:'notary_signer_email_sent' => :'notarySignerEmailSent',
|
382
385
|
:'notary_signers' => :'notarySigners',
|
383
386
|
:'notary_source_type' => :'notarySourceType',
|
387
|
+
:'notary_third_party_partner' => :'notaryThirdPartyPartner',
|
384
388
|
:'notary_type' => :'notaryType',
|
385
389
|
:'note' => :'note',
|
386
390
|
:'note_metadata' => :'noteMetadata',
|
@@ -489,6 +493,7 @@ module DocuSign_eSign
|
|
489
493
|
:'notary_signer_email_sent' => :'String',
|
490
494
|
:'notary_signers' => :'Array<String>',
|
491
495
|
:'notary_source_type' => :'String',
|
496
|
+
:'notary_third_party_partner' => :'String',
|
492
497
|
:'notary_type' => :'String',
|
493
498
|
:'note' => :'String',
|
494
499
|
:'note_metadata' => :'PropertyMetadata',
|
@@ -793,6 +798,10 @@ module DocuSign_eSign
|
|
793
798
|
self.notary_source_type = attributes[:'notarySourceType']
|
794
799
|
end
|
795
800
|
|
801
|
+
if attributes.has_key?(:'notaryThirdPartyPartner')
|
802
|
+
self.notary_third_party_partner = attributes[:'notaryThirdPartyPartner']
|
803
|
+
end
|
804
|
+
|
796
805
|
if attributes.has_key?(:'notaryType')
|
797
806
|
self.notary_type = attributes[:'notaryType']
|
798
807
|
end
|
@@ -1053,6 +1062,7 @@ module DocuSign_eSign
|
|
1053
1062
|
notary_signer_email_sent == o.notary_signer_email_sent &&
|
1054
1063
|
notary_signers == o.notary_signers &&
|
1055
1064
|
notary_source_type == o.notary_source_type &&
|
1065
|
+
notary_third_party_partner == o.notary_third_party_partner &&
|
1056
1066
|
notary_type == o.notary_type &&
|
1057
1067
|
note == o.note &&
|
1058
1068
|
note_metadata == o.note_metadata &&
|
@@ -1107,7 +1117,7 @@ module DocuSign_eSign
|
|
1107
1117
|
# Calculates hash code according to all attributes.
|
1108
1118
|
# @return [Fixnum] Hash code
|
1109
1119
|
def hash
|
1110
|
-
[access_code, access_code_metadata, add_access_code_to_email, additional_notifications, agent_can_edit_email, agent_can_edit_name, allow_system_override_for_locked_recipient, auto_navigation, auto_responded_reason, bulk_recipients_uri, bulk_send_v2_recipient, can_sign_offline, client_user_id, completed_count, consent_details_list, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, delegated_by, delegated_to, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, email_recipient_post_signing_url, embedded_recipient_start_url, error_details, excluded_documents, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, is_bulk_recipient, is_bulk_recipient_metadata, last_name, last_name_metadata, live_oak_start_url, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, notary_id, notary_signer_email_sent, notary_signers, notary_source_type, notary_type, note, note_metadata, offline_attributes, phone_authentication, phone_number, proof_file, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_signature_providers, recipient_supplies_tabs, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, require_signer_certificate, require_sign_on_paper, require_upload_signature, role_name, routing_order, routing_order_metadata, sent_date_time, signature_info, signed_date_time, sign_in_each_location, sign_in_each_location_metadata, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, tabs, template_locked, template_required, total_tab_count, user_id].hash
|
1120
|
+
[access_code, access_code_metadata, add_access_code_to_email, additional_notifications, agent_can_edit_email, agent_can_edit_name, allow_system_override_for_locked_recipient, auto_navigation, auto_responded_reason, bulk_recipients_uri, bulk_send_v2_recipient, can_sign_offline, client_user_id, completed_count, consent_details_list, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, delegated_by, delegated_to, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, email_recipient_post_signing_url, embedded_recipient_start_url, error_details, excluded_documents, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, is_bulk_recipient, is_bulk_recipient_metadata, last_name, last_name_metadata, live_oak_start_url, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, notary_id, notary_signer_email_sent, notary_signers, notary_source_type, notary_third_party_partner, notary_type, note, note_metadata, offline_attributes, phone_authentication, phone_number, proof_file, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_signature_providers, recipient_supplies_tabs, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, require_signer_certificate, require_sign_on_paper, require_upload_signature, role_name, routing_order, routing_order_metadata, sent_date_time, signature_info, signed_date_time, sign_in_each_location, sign_in_each_location_metadata, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, tabs, template_locked, template_required, total_tab_count, user_id].hash
|
1111
1121
|
end
|
1112
1122
|
|
1113
1123
|
# Builds the object from hash
|
@@ -12,7 +12,7 @@ Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
require 'date'
|
13
13
|
|
14
14
|
module DocuSign_eSign
|
15
|
-
#
|
15
|
+
# Reserved for DocuSign use.
|
16
16
|
class OfflineAttributes
|
17
17
|
# A GUID identifying the account associated with the consumer disclosure
|
18
18
|
attr_accessor :account_esign_id
|
@@ -22,7 +22,7 @@ module DocuSign_eSign
|
|
22
22
|
# A list of envelope delay rules specified by the user indicating how and when the envelope should be scheduled for sending in the future. Currently only 1 rule may be specified.
|
23
23
|
attr_accessor :rules
|
24
24
|
|
25
|
-
#
|
25
|
+
# Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later.
|
26
26
|
attr_accessor :status
|
27
27
|
|
28
28
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -26,6 +26,12 @@ module DocuSign_eSign
|
|
26
26
|
#
|
27
27
|
attr_accessor :allow_auto_tagging
|
28
28
|
|
29
|
+
#
|
30
|
+
attr_accessor :allowed_orchestration_access
|
31
|
+
|
32
|
+
#
|
33
|
+
attr_accessor :allowed_orchestration_access_metadata
|
34
|
+
|
29
35
|
#
|
30
36
|
attr_accessor :allow_envelope_transfer_to
|
31
37
|
|
@@ -62,6 +68,12 @@ module DocuSign_eSign
|
|
62
68
|
# Metadata that indicates whether the `allowSupplementalDocuments` property is editable.
|
63
69
|
attr_accessor :allow_supplemental_documents_metadata
|
64
70
|
|
71
|
+
#
|
72
|
+
attr_accessor :allow_transactions
|
73
|
+
|
74
|
+
#
|
75
|
+
attr_accessor :allow_transactions_metadata
|
76
|
+
|
65
77
|
#
|
66
78
|
attr_accessor :anchor_tag_versioned_placement_enabled
|
67
79
|
|
@@ -89,6 +101,24 @@ module DocuSign_eSign
|
|
89
101
|
# Reserved for DocuSign.
|
90
102
|
attr_accessor :can_charge_account_metadata
|
91
103
|
|
104
|
+
#
|
105
|
+
attr_accessor :can_create_transaction
|
106
|
+
|
107
|
+
#
|
108
|
+
attr_accessor :can_create_transaction_metadata
|
109
|
+
|
110
|
+
#
|
111
|
+
attr_accessor :can_delete_documents_in_transaction
|
112
|
+
|
113
|
+
#
|
114
|
+
attr_accessor :can_delete_documents_in_transaction_metadata
|
115
|
+
|
116
|
+
#
|
117
|
+
attr_accessor :can_delete_transaction
|
118
|
+
|
119
|
+
#
|
120
|
+
attr_accessor :can_delete_transaction_metadata
|
121
|
+
|
92
122
|
#
|
93
123
|
attr_accessor :can_edit_shared_addressbook
|
94
124
|
|
@@ -396,6 +426,8 @@ module DocuSign_eSign
|
|
396
426
|
:'admin_only' => :'adminOnly',
|
397
427
|
:'admin_only_metadata' => :'adminOnlyMetadata',
|
398
428
|
:'allow_auto_tagging' => :'allowAutoTagging',
|
429
|
+
:'allowed_orchestration_access' => :'allowedOrchestrationAccess',
|
430
|
+
:'allowed_orchestration_access_metadata' => :'allowedOrchestrationAccessMetadata',
|
399
431
|
:'allow_envelope_transfer_to' => :'allowEnvelopeTransferTo',
|
400
432
|
:'allow_envelope_transfer_to_metadata' => :'allowEnvelopeTransferToMetadata',
|
401
433
|
:'allow_eseal_recipients' => :'allowEsealRecipients',
|
@@ -408,6 +440,8 @@ module DocuSign_eSign
|
|
408
440
|
:'allow_send_on_behalf_of_metadata' => :'allowSendOnBehalfOfMetadata',
|
409
441
|
:'allow_supplemental_documents' => :'allowSupplementalDocuments',
|
410
442
|
:'allow_supplemental_documents_metadata' => :'allowSupplementalDocumentsMetadata',
|
443
|
+
:'allow_transactions' => :'allowTransactions',
|
444
|
+
:'allow_transactions_metadata' => :'allowTransactionsMetadata',
|
411
445
|
:'anchor_tag_versioned_placement_enabled' => :'anchorTagVersionedPlacementEnabled',
|
412
446
|
:'api_account_wide_access' => :'apiAccountWideAccess',
|
413
447
|
:'api_account_wide_access_metadata' => :'apiAccountWideAccessMetadata',
|
@@ -417,6 +451,12 @@ module DocuSign_eSign
|
|
417
451
|
:'bulk_send_metadata' => :'bulkSendMetadata',
|
418
452
|
:'can_charge_account' => :'canChargeAccount',
|
419
453
|
:'can_charge_account_metadata' => :'canChargeAccountMetadata',
|
454
|
+
:'can_create_transaction' => :'canCreateTransaction',
|
455
|
+
:'can_create_transaction_metadata' => :'canCreateTransactionMetadata',
|
456
|
+
:'can_delete_documents_in_transaction' => :'canDeleteDocumentsInTransaction',
|
457
|
+
:'can_delete_documents_in_transaction_metadata' => :'canDeleteDocumentsInTransactionMetadata',
|
458
|
+
:'can_delete_transaction' => :'canDeleteTransaction',
|
459
|
+
:'can_delete_transaction_metadata' => :'canDeleteTransactionMetadata',
|
420
460
|
:'can_edit_shared_addressbook' => :'canEditSharedAddressbook',
|
421
461
|
:'can_edit_shared_addressbook_metadata' => :'canEditSharedAddressbookMetadata',
|
422
462
|
:'can_lock_envelopes' => :'canLockEnvelopes',
|
@@ -527,6 +567,8 @@ module DocuSign_eSign
|
|
527
567
|
:'admin_only' => :'String',
|
528
568
|
:'admin_only_metadata' => :'SettingsMetadata',
|
529
569
|
:'allow_auto_tagging' => :'String',
|
570
|
+
:'allowed_orchestration_access' => :'String',
|
571
|
+
:'allowed_orchestration_access_metadata' => :'SettingsMetadata',
|
530
572
|
:'allow_envelope_transfer_to' => :'String',
|
531
573
|
:'allow_envelope_transfer_to_metadata' => :'SettingsMetadata',
|
532
574
|
:'allow_eseal_recipients' => :'String',
|
@@ -539,6 +581,8 @@ module DocuSign_eSign
|
|
539
581
|
:'allow_send_on_behalf_of_metadata' => :'SettingsMetadata',
|
540
582
|
:'allow_supplemental_documents' => :'String',
|
541
583
|
:'allow_supplemental_documents_metadata' => :'SettingsMetadata',
|
584
|
+
:'allow_transactions' => :'String',
|
585
|
+
:'allow_transactions_metadata' => :'SettingsMetadata',
|
542
586
|
:'anchor_tag_versioned_placement_enabled' => :'String',
|
543
587
|
:'api_account_wide_access' => :'String',
|
544
588
|
:'api_account_wide_access_metadata' => :'SettingsMetadata',
|
@@ -548,6 +592,12 @@ module DocuSign_eSign
|
|
548
592
|
:'bulk_send_metadata' => :'SettingsMetadata',
|
549
593
|
:'can_charge_account' => :'String',
|
550
594
|
:'can_charge_account_metadata' => :'SettingsMetadata',
|
595
|
+
:'can_create_transaction' => :'String',
|
596
|
+
:'can_create_transaction_metadata' => :'SettingsMetadata',
|
597
|
+
:'can_delete_documents_in_transaction' => :'String',
|
598
|
+
:'can_delete_documents_in_transaction_metadata' => :'SettingsMetadata',
|
599
|
+
:'can_delete_transaction' => :'String',
|
600
|
+
:'can_delete_transaction_metadata' => :'SettingsMetadata',
|
551
601
|
:'can_edit_shared_addressbook' => :'String',
|
552
602
|
:'can_edit_shared_addressbook_metadata' => :'SettingsMetadata',
|
553
603
|
:'can_lock_envelopes' => :'String',
|
@@ -675,6 +725,14 @@ module DocuSign_eSign
|
|
675
725
|
self.allow_auto_tagging = attributes[:'allowAutoTagging']
|
676
726
|
end
|
677
727
|
|
728
|
+
if attributes.has_key?(:'allowedOrchestrationAccess')
|
729
|
+
self.allowed_orchestration_access = attributes[:'allowedOrchestrationAccess']
|
730
|
+
end
|
731
|
+
|
732
|
+
if attributes.has_key?(:'allowedOrchestrationAccessMetadata')
|
733
|
+
self.allowed_orchestration_access_metadata = attributes[:'allowedOrchestrationAccessMetadata']
|
734
|
+
end
|
735
|
+
|
678
736
|
if attributes.has_key?(:'allowEnvelopeTransferTo')
|
679
737
|
self.allow_envelope_transfer_to = attributes[:'allowEnvelopeTransferTo']
|
680
738
|
end
|
@@ -723,6 +781,14 @@ module DocuSign_eSign
|
|
723
781
|
self.allow_supplemental_documents_metadata = attributes[:'allowSupplementalDocumentsMetadata']
|
724
782
|
end
|
725
783
|
|
784
|
+
if attributes.has_key?(:'allowTransactions')
|
785
|
+
self.allow_transactions = attributes[:'allowTransactions']
|
786
|
+
end
|
787
|
+
|
788
|
+
if attributes.has_key?(:'allowTransactionsMetadata')
|
789
|
+
self.allow_transactions_metadata = attributes[:'allowTransactionsMetadata']
|
790
|
+
end
|
791
|
+
|
726
792
|
if attributes.has_key?(:'anchorTagVersionedPlacementEnabled')
|
727
793
|
self.anchor_tag_versioned_placement_enabled = attributes[:'anchorTagVersionedPlacementEnabled']
|
728
794
|
end
|
@@ -759,6 +825,30 @@ module DocuSign_eSign
|
|
759
825
|
self.can_charge_account_metadata = attributes[:'canChargeAccountMetadata']
|
760
826
|
end
|
761
827
|
|
828
|
+
if attributes.has_key?(:'canCreateTransaction')
|
829
|
+
self.can_create_transaction = attributes[:'canCreateTransaction']
|
830
|
+
end
|
831
|
+
|
832
|
+
if attributes.has_key?(:'canCreateTransactionMetadata')
|
833
|
+
self.can_create_transaction_metadata = attributes[:'canCreateTransactionMetadata']
|
834
|
+
end
|
835
|
+
|
836
|
+
if attributes.has_key?(:'canDeleteDocumentsInTransaction')
|
837
|
+
self.can_delete_documents_in_transaction = attributes[:'canDeleteDocumentsInTransaction']
|
838
|
+
end
|
839
|
+
|
840
|
+
if attributes.has_key?(:'canDeleteDocumentsInTransactionMetadata')
|
841
|
+
self.can_delete_documents_in_transaction_metadata = attributes[:'canDeleteDocumentsInTransactionMetadata']
|
842
|
+
end
|
843
|
+
|
844
|
+
if attributes.has_key?(:'canDeleteTransaction')
|
845
|
+
self.can_delete_transaction = attributes[:'canDeleteTransaction']
|
846
|
+
end
|
847
|
+
|
848
|
+
if attributes.has_key?(:'canDeleteTransactionMetadata')
|
849
|
+
self.can_delete_transaction_metadata = attributes[:'canDeleteTransactionMetadata']
|
850
|
+
end
|
851
|
+
|
762
852
|
if attributes.has_key?(:'canEditSharedAddressbook')
|
763
853
|
self.can_edit_shared_addressbook = attributes[:'canEditSharedAddressbook']
|
764
854
|
end
|
@@ -1184,6 +1274,8 @@ module DocuSign_eSign
|
|
1184
1274
|
admin_only == o.admin_only &&
|
1185
1275
|
admin_only_metadata == o.admin_only_metadata &&
|
1186
1276
|
allow_auto_tagging == o.allow_auto_tagging &&
|
1277
|
+
allowed_orchestration_access == o.allowed_orchestration_access &&
|
1278
|
+
allowed_orchestration_access_metadata == o.allowed_orchestration_access_metadata &&
|
1187
1279
|
allow_envelope_transfer_to == o.allow_envelope_transfer_to &&
|
1188
1280
|
allow_envelope_transfer_to_metadata == o.allow_envelope_transfer_to_metadata &&
|
1189
1281
|
allow_eseal_recipients == o.allow_eseal_recipients &&
|
@@ -1196,6 +1288,8 @@ module DocuSign_eSign
|
|
1196
1288
|
allow_send_on_behalf_of_metadata == o.allow_send_on_behalf_of_metadata &&
|
1197
1289
|
allow_supplemental_documents == o.allow_supplemental_documents &&
|
1198
1290
|
allow_supplemental_documents_metadata == o.allow_supplemental_documents_metadata &&
|
1291
|
+
allow_transactions == o.allow_transactions &&
|
1292
|
+
allow_transactions_metadata == o.allow_transactions_metadata &&
|
1199
1293
|
anchor_tag_versioned_placement_enabled == o.anchor_tag_versioned_placement_enabled &&
|
1200
1294
|
api_account_wide_access == o.api_account_wide_access &&
|
1201
1295
|
api_account_wide_access_metadata == o.api_account_wide_access_metadata &&
|
@@ -1205,6 +1299,12 @@ module DocuSign_eSign
|
|
1205
1299
|
bulk_send_metadata == o.bulk_send_metadata &&
|
1206
1300
|
can_charge_account == o.can_charge_account &&
|
1207
1301
|
can_charge_account_metadata == o.can_charge_account_metadata &&
|
1302
|
+
can_create_transaction == o.can_create_transaction &&
|
1303
|
+
can_create_transaction_metadata == o.can_create_transaction_metadata &&
|
1304
|
+
can_delete_documents_in_transaction == o.can_delete_documents_in_transaction &&
|
1305
|
+
can_delete_documents_in_transaction_metadata == o.can_delete_documents_in_transaction_metadata &&
|
1306
|
+
can_delete_transaction == o.can_delete_transaction &&
|
1307
|
+
can_delete_transaction_metadata == o.can_delete_transaction_metadata &&
|
1208
1308
|
can_edit_shared_addressbook == o.can_edit_shared_addressbook &&
|
1209
1309
|
can_edit_shared_addressbook_metadata == o.can_edit_shared_addressbook_metadata &&
|
1210
1310
|
can_lock_envelopes == o.can_lock_envelopes &&
|
@@ -1316,7 +1416,7 @@ module DocuSign_eSign
|
|
1316
1416
|
# Calculates hash code according to all attributes.
|
1317
1417
|
# @return [Fixnum] Hash code
|
1318
1418
|
def hash
|
1319
|
-
[account_management_granular, admin_only, admin_only_metadata, allow_auto_tagging, allow_envelope_transfer_to, allow_envelope_transfer_to_metadata, allow_eseal_recipients, allow_eseal_recipients_metadata, allow_power_forms_admin_to_access_all_power_form_envelope, allow_power_forms_admin_to_access_all_power_form_envelope_metadata, allow_recipient_language_selection, allow_recipient_language_selection_metadata, allow_send_on_behalf_of, allow_send_on_behalf_of_metadata, allow_supplemental_documents, allow_supplemental_documents_metadata, anchor_tag_versioned_placement_enabled, api_account_wide_access, api_account_wide_access_metadata, api_can_export_ac, api_can_export_ac_metadata, bulk_send, bulk_send_metadata, can_charge_account, can_charge_account_metadata, can_edit_shared_addressbook, can_edit_shared_addressbook_metadata, can_lock_envelopes, can_lock_envelopes_metadata, can_manage_account, can_manage_account_metadata, can_manage_distributor, can_manage_distributor_metadata, can_manage_templates, can_manage_templates_metadata, can_send_api_requests, can_send_api_requests_metadata, can_send_envelope, can_send_envelope_metadata, can_send_envelopes_via_sms, can_send_envelopes_via_sms_metadata, can_sign_envelope, can_sign_envelope_metadata, can_use_scratchpad, can_use_scratchpad_metadata, can_use_smart_contracts, can_use_smart_contracts_metadata, disable_document_upload, disable_document_upload_metadata, disable_other_actions, disable_other_actions_metadata, enable_ds_pro, enable_ds_pro_metadata, enable_key_terms_suggestions_by_document_type, enable_key_terms_suggestions_by_document_type_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_sign_on_paper_override, enable_sign_on_paper_override_metadata, enable_transaction_point, enable_transaction_point_metadata, enable_vaulting, enable_vaulting_metadata, express_send_only, locale, locale_metadata, locale_policy, manage_clickwraps_mode, manage_clickwraps_mode_metadata, modified_by, modified_by_metadata, modified_date, modified_date_metadata, modified_page, modified_page_metadata, new_send_ui, new_send_ui_metadata, power_form_mode, power_form_mode_metadata, recipient_viewed_notification, recipient_viewed_notification_metadata, seal_identifiers, self_signed_recipient_email_document, self_signed_recipient_email_document_metadata, sender_email_notifications, signer_email_notifications, supplemental_document_include_in_download, 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, template_active_creation, template_active_creation_metadata, template_apply_notify, template_apply_notify_metadata, template_auto_matching, template_auto_matching_metadata, template_matching_sensitivity, template_matching_sensitivity_metadata, template_page_level_matching, template_page_level_matching_metadata, timezone_dst, timezone_dst_metadata, timezone_mask, timezone_mask_metadata, timezone_offset, timezone_offset_metadata, timezone_sending_pref, timezone_sending_pref_metadata, timezone_signing_pref, timezone_signing_pref_metadata, transaction_point_site_name_url, transaction_point_site_name_url_metadata, transaction_point_user_name, transaction_point_user_name_metadata, vaulting_mode, vaulting_mode_metadata, web_forms, web_forms_metadata].hash
|
1419
|
+
[account_management_granular, admin_only, admin_only_metadata, allow_auto_tagging, allowed_orchestration_access, allowed_orchestration_access_metadata, allow_envelope_transfer_to, allow_envelope_transfer_to_metadata, allow_eseal_recipients, allow_eseal_recipients_metadata, allow_power_forms_admin_to_access_all_power_form_envelope, allow_power_forms_admin_to_access_all_power_form_envelope_metadata, allow_recipient_language_selection, allow_recipient_language_selection_metadata, allow_send_on_behalf_of, allow_send_on_behalf_of_metadata, allow_supplemental_documents, allow_supplemental_documents_metadata, allow_transactions, allow_transactions_metadata, anchor_tag_versioned_placement_enabled, api_account_wide_access, api_account_wide_access_metadata, api_can_export_ac, api_can_export_ac_metadata, bulk_send, bulk_send_metadata, can_charge_account, can_charge_account_metadata, can_create_transaction, can_create_transaction_metadata, can_delete_documents_in_transaction, can_delete_documents_in_transaction_metadata, can_delete_transaction, can_delete_transaction_metadata, can_edit_shared_addressbook, can_edit_shared_addressbook_metadata, can_lock_envelopes, can_lock_envelopes_metadata, can_manage_account, can_manage_account_metadata, can_manage_distributor, can_manage_distributor_metadata, can_manage_templates, can_manage_templates_metadata, can_send_api_requests, can_send_api_requests_metadata, can_send_envelope, can_send_envelope_metadata, can_send_envelopes_via_sms, can_send_envelopes_via_sms_metadata, can_sign_envelope, can_sign_envelope_metadata, can_use_scratchpad, can_use_scratchpad_metadata, can_use_smart_contracts, can_use_smart_contracts_metadata, disable_document_upload, disable_document_upload_metadata, disable_other_actions, disable_other_actions_metadata, enable_ds_pro, enable_ds_pro_metadata, enable_key_terms_suggestions_by_document_type, enable_key_terms_suggestions_by_document_type_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_sign_on_paper_override, enable_sign_on_paper_override_metadata, enable_transaction_point, enable_transaction_point_metadata, enable_vaulting, enable_vaulting_metadata, express_send_only, locale, locale_metadata, locale_policy, manage_clickwraps_mode, manage_clickwraps_mode_metadata, modified_by, modified_by_metadata, modified_date, modified_date_metadata, modified_page, modified_page_metadata, new_send_ui, new_send_ui_metadata, power_form_mode, power_form_mode_metadata, recipient_viewed_notification, recipient_viewed_notification_metadata, seal_identifiers, self_signed_recipient_email_document, self_signed_recipient_email_document_metadata, sender_email_notifications, signer_email_notifications, supplemental_document_include_in_download, 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, template_active_creation, template_active_creation_metadata, template_apply_notify, template_apply_notify_metadata, template_auto_matching, template_auto_matching_metadata, template_matching_sensitivity, template_matching_sensitivity_metadata, template_page_level_matching, template_page_level_matching_metadata, timezone_dst, timezone_dst_metadata, timezone_mask, timezone_mask_metadata, timezone_offset, timezone_offset_metadata, timezone_sending_pref, timezone_sending_pref_metadata, timezone_signing_pref, timezone_signing_pref_metadata, transaction_point_site_name_url, transaction_point_site_name_url_metadata, transaction_point_user_name, transaction_point_user_name_metadata, vaulting_mode, vaulting_mode_metadata, web_forms, web_forms_metadata].hash
|
1320
1420
|
end
|
1321
1421
|
|
1322
1422
|
# Builds the object from hash
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: docusign_esign
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DocuSign
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|