docusign_esign 3.11.0.rc1 → 3.13.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +12 -1
- data/docusign_esign.gemspec +1 -0
- data/lib/docusign_esign/api/accounts_api.rb +4 -4
- data/lib/docusign_esign/api/billing_api.rb +6 -2
- data/lib/docusign_esign/api/connect_api.rb +85 -0
- data/lib/docusign_esign/api/envelopes_api.rb +137 -3
- data/lib/docusign_esign/client/api_client.rb +3 -2
- data/lib/docusign_esign/configuration.rb +2 -1
- data/lib/docusign_esign/models/account_billing_plan.rb +21 -1
- data/lib/docusign_esign/models/account_billing_plan_response.rb +20 -1
- data/lib/docusign_esign/models/account_settings_information.rb +39 -1
- data/lib/docusign_esign/models/account_signature_definition.rb +11 -1
- data/lib/docusign_esign/models/agent.rb +1 -10
- data/lib/docusign_esign/models/app_store_receipt.rb +21 -1
- data/lib/docusign_esign/models/billing_charge.rb +1 -1
- data/lib/docusign_esign/models/carbon_copy.rb +1 -10
- data/lib/docusign_esign/models/certified_delivery.rb +1 -10
- data/lib/docusign_esign/models/checkbox.rb +20 -1
- data/lib/docusign_esign/models/connect_custom_configuration.rb +14 -4
- data/lib/docusign_esign/models/connect_user_info.rb +224 -0
- data/lib/docusign_esign/models/credit_card_information.rb +24 -4
- data/lib/docusign_esign/models/date.rb +20 -1
- data/lib/docusign_esign/models/downgrade_billing_plan_information.rb +44 -4
- data/lib/docusign_esign/models/downgrade_plan_update_response.rb +64 -4
- data/lib/docusign_esign/models/downgrade_request_information.rb +204 -0
- data/lib/docusign_esign/models/editor.rb +1 -10
- data/lib/docusign_esign/models/email.rb +20 -1
- data/lib/docusign_esign/models/event_notification.rb +11 -1
- data/lib/docusign_esign/models/formula_tab.rb +20 -1
- data/lib/docusign_esign/models/integrated_connect_user_info_list.rb +246 -0
- data/lib/docusign_esign/models/intermediary.rb +1 -10
- data/lib/docusign_esign/models/list.rb +20 -1
- data/lib/docusign_esign/models/notary_recipient.rb +1 -10
- data/lib/docusign_esign/models/number.rb +20 -1
- data/lib/docusign_esign/models/radio_group.rb +20 -1
- data/lib/docusign_esign/models/recipient_identity_phone_number.rb +41 -4
- data/lib/docusign_esign/models/recipient_identity_verification.rb +13 -4
- data/lib/docusign_esign/models/recipient_proof_file.rb +11 -1
- data/lib/docusign_esign/models/report_in_product_run_response_row_fields.rb +31 -1
- data/lib/docusign_esign/models/signer.rb +1 -10
- data/lib/docusign_esign/models/ssn.rb +20 -1
- data/lib/docusign_esign/models/template_role.rb +10 -1
- data/lib/docusign_esign/models/text.rb +20 -1
- data/lib/docusign_esign/models/user_account_management_granular_information.rb +20 -1
- data/lib/docusign_esign/models/user_signature_definition.rb +11 -1
- data/lib/docusign_esign/models/witness.rb +1 -10
- data/lib/docusign_esign/models/zip.rb +20 -1
- data/lib/docusign_esign/version.rb +1 -1
- data/lib/docusign_esign.rb +3 -1
- data/runLinter.sh +1 -0
- metadata +124 -79
- checksums.yaml +0 -7
- data/Gemfile.lock +0 -73
- data/docusign_esign-2.11.0.rc1.gem +0 -0
- data/lib/docusign_esign/.DS_Store +0 -0
- data/lib/docusign_esign/api/.DS_Store +0 -0
- data/lib/docusign_esign/client/.DS_Store +0 -0
- data/tests/.DS_Store +0 -0
- data/tests/Gemfile.lock +0 -42
- data/tests/docs/private.pem +0 -27
@@ -19,11 +19,14 @@ module DocuSign_eSign
|
|
19
19
|
#
|
20
20
|
attr_accessor :workflow_id
|
21
21
|
|
22
|
+
attr_accessor :workflow_id_metadata
|
23
|
+
|
22
24
|
# Attribute mapping from ruby-style variable name to JSON key.
|
23
25
|
def self.attribute_map
|
24
26
|
{
|
25
27
|
:'input_options' => :'inputOptions',
|
26
|
-
:'workflow_id' => :'workflowId'
|
28
|
+
:'workflow_id' => :'workflowId',
|
29
|
+
:'workflow_id_metadata' => :'workflowIdMetadata'
|
27
30
|
}
|
28
31
|
end
|
29
32
|
|
@@ -31,7 +34,8 @@ module DocuSign_eSign
|
|
31
34
|
def self.swagger_types
|
32
35
|
{
|
33
36
|
:'input_options' => :'Array<RecipientIdentityInputOption>',
|
34
|
-
:'workflow_id' => :'String'
|
37
|
+
:'workflow_id' => :'String',
|
38
|
+
:'workflow_id_metadata' => :'PropertyMetadata'
|
35
39
|
}
|
36
40
|
end
|
37
41
|
|
@@ -52,6 +56,10 @@ module DocuSign_eSign
|
|
52
56
|
if attributes.has_key?(:'workflowId')
|
53
57
|
self.workflow_id = attributes[:'workflowId']
|
54
58
|
end
|
59
|
+
|
60
|
+
if attributes.has_key?(:'workflowIdMetadata')
|
61
|
+
self.workflow_id_metadata = attributes[:'workflowIdMetadata']
|
62
|
+
end
|
55
63
|
end
|
56
64
|
|
57
65
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -73,7 +81,8 @@ module DocuSign_eSign
|
|
73
81
|
return true if self.equal?(o)
|
74
82
|
self.class == o.class &&
|
75
83
|
input_options == o.input_options &&
|
76
|
-
workflow_id == o.workflow_id
|
84
|
+
workflow_id == o.workflow_id &&
|
85
|
+
workflow_id_metadata == o.workflow_id_metadata
|
77
86
|
end
|
78
87
|
|
79
88
|
# @see the `==` method
|
@@ -85,7 +94,7 @@ module DocuSign_eSign
|
|
85
94
|
# Calculates hash code according to all attributes.
|
86
95
|
# @return [Fixnum] Hash code
|
87
96
|
def hash
|
88
|
-
[input_options, workflow_id].hash
|
97
|
+
[input_options, workflow_id, workflow_id_metadata].hash
|
89
98
|
end
|
90
99
|
|
91
100
|
# Builds the object from hash
|
@@ -13,12 +13,16 @@ require 'date'
|
|
13
13
|
|
14
14
|
module DocuSign_eSign
|
15
15
|
class RecipientProofFile
|
16
|
+
#
|
17
|
+
attr_accessor :has_identity_attempts
|
18
|
+
|
16
19
|
#
|
17
20
|
attr_accessor :is_in_proof_file
|
18
21
|
|
19
22
|
# Attribute mapping from ruby-style variable name to JSON key.
|
20
23
|
def self.attribute_map
|
21
24
|
{
|
25
|
+
:'has_identity_attempts' => :'hasIdentityAttempts',
|
22
26
|
:'is_in_proof_file' => :'isInProofFile'
|
23
27
|
}
|
24
28
|
end
|
@@ -26,6 +30,7 @@ module DocuSign_eSign
|
|
26
30
|
# Attribute type mapping.
|
27
31
|
def self.swagger_types
|
28
32
|
{
|
33
|
+
:'has_identity_attempts' => :'String',
|
29
34
|
:'is_in_proof_file' => :'String'
|
30
35
|
}
|
31
36
|
end
|
@@ -38,6 +43,10 @@ module DocuSign_eSign
|
|
38
43
|
# convert string to symbol for hash key
|
39
44
|
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
40
45
|
|
46
|
+
if attributes.has_key?(:'hasIdentityAttempts')
|
47
|
+
self.has_identity_attempts = attributes[:'hasIdentityAttempts']
|
48
|
+
end
|
49
|
+
|
41
50
|
if attributes.has_key?(:'isInProofFile')
|
42
51
|
self.is_in_proof_file = attributes[:'isInProofFile']
|
43
52
|
end
|
@@ -61,6 +70,7 @@ module DocuSign_eSign
|
|
61
70
|
def ==(o)
|
62
71
|
return true if self.equal?(o)
|
63
72
|
self.class == o.class &&
|
73
|
+
has_identity_attempts == o.has_identity_attempts &&
|
64
74
|
is_in_proof_file == o.is_in_proof_file
|
65
75
|
end
|
66
76
|
|
@@ -73,7 +83,7 @@ module DocuSign_eSign
|
|
73
83
|
# Calculates hash code according to all attributes.
|
74
84
|
# @return [Fixnum] Hash code
|
75
85
|
def hash
|
76
|
-
[is_in_proof_file].hash
|
86
|
+
[has_identity_attempts, is_in_proof_file].hash
|
77
87
|
end
|
78
88
|
|
79
89
|
# Builds the object from hash
|
@@ -232,6 +232,9 @@ module DocuSign_eSign
|
|
232
232
|
#
|
233
233
|
attr_accessor :number_total_recipients
|
234
234
|
|
235
|
+
#
|
236
|
+
attr_accessor :other_recipients_list
|
237
|
+
|
235
238
|
#
|
236
239
|
attr_accessor :owner
|
237
240
|
|
@@ -334,6 +337,12 @@ module DocuSign_eSign
|
|
334
337
|
#
|
335
338
|
attr_accessor :sender_user_id
|
336
339
|
|
340
|
+
#
|
341
|
+
attr_accessor :signature_type
|
342
|
+
|
343
|
+
#
|
344
|
+
attr_accessor :signature_type_value
|
345
|
+
|
337
346
|
#
|
338
347
|
attr_accessor :sign_date
|
339
348
|
|
@@ -512,6 +521,7 @@ module DocuSign_eSign
|
|
512
521
|
:'number_of_total_signers' => :'numberOfTotalSigners',
|
513
522
|
:'number_of_unique_senders' => :'numberOfUniqueSenders',
|
514
523
|
:'number_total_recipients' => :'numberTotalRecipients',
|
524
|
+
:'other_recipients_list' => :'otherRecipientsList',
|
515
525
|
:'owner' => :'owner',
|
516
526
|
:'owner_mail' => :'ownerMail',
|
517
527
|
:'period_end' => :'periodEnd',
|
@@ -546,6 +556,8 @@ module DocuSign_eSign
|
|
546
556
|
:'sender_job_title' => :'senderJobTitle',
|
547
557
|
:'sender_name' => :'senderName',
|
548
558
|
:'sender_user_id' => :'senderUserId',
|
559
|
+
:'signature_type' => :'signatureType',
|
560
|
+
:'signature_type_value' => :'signatureTypeValue',
|
549
561
|
:'sign_date' => :'signDate',
|
550
562
|
:'signed' => :'signed',
|
551
563
|
:'signed_date' => :'signedDate',
|
@@ -659,6 +671,7 @@ module DocuSign_eSign
|
|
659
671
|
:'number_of_total_signers' => :'String',
|
660
672
|
:'number_of_unique_senders' => :'String',
|
661
673
|
:'number_total_recipients' => :'String',
|
674
|
+
:'other_recipients_list' => :'String',
|
662
675
|
:'owner' => :'String',
|
663
676
|
:'owner_mail' => :'String',
|
664
677
|
:'period_end' => :'String',
|
@@ -693,6 +706,8 @@ module DocuSign_eSign
|
|
693
706
|
:'sender_job_title' => :'String',
|
694
707
|
:'sender_name' => :'String',
|
695
708
|
:'sender_user_id' => :'String',
|
709
|
+
:'signature_type' => :'String',
|
710
|
+
:'signature_type_value' => :'String',
|
696
711
|
:'sign_date' => :'String',
|
697
712
|
:'signed' => :'String',
|
698
713
|
:'signed_date' => :'String',
|
@@ -1030,6 +1045,10 @@ module DocuSign_eSign
|
|
1030
1045
|
self.number_total_recipients = attributes[:'numberTotalRecipients']
|
1031
1046
|
end
|
1032
1047
|
|
1048
|
+
if attributes.has_key?(:'otherRecipientsList')
|
1049
|
+
self.other_recipients_list = attributes[:'otherRecipientsList']
|
1050
|
+
end
|
1051
|
+
|
1033
1052
|
if attributes.has_key?(:'owner')
|
1034
1053
|
self.owner = attributes[:'owner']
|
1035
1054
|
end
|
@@ -1166,6 +1185,14 @@ module DocuSign_eSign
|
|
1166
1185
|
self.sender_user_id = attributes[:'senderUserId']
|
1167
1186
|
end
|
1168
1187
|
|
1188
|
+
if attributes.has_key?(:'signatureType')
|
1189
|
+
self.signature_type = attributes[:'signatureType']
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
if attributes.has_key?(:'signatureTypeValue')
|
1193
|
+
self.signature_type_value = attributes[:'signatureTypeValue']
|
1194
|
+
end
|
1195
|
+
|
1169
1196
|
if attributes.has_key?(:'signDate')
|
1170
1197
|
self.sign_date = attributes[:'signDate']
|
1171
1198
|
end
|
@@ -1394,6 +1421,7 @@ module DocuSign_eSign
|
|
1394
1421
|
number_of_total_signers == o.number_of_total_signers &&
|
1395
1422
|
number_of_unique_senders == o.number_of_unique_senders &&
|
1396
1423
|
number_total_recipients == o.number_total_recipients &&
|
1424
|
+
other_recipients_list == o.other_recipients_list &&
|
1397
1425
|
owner == o.owner &&
|
1398
1426
|
owner_mail == o.owner_mail &&
|
1399
1427
|
period_end == o.period_end &&
|
@@ -1428,6 +1456,8 @@ module DocuSign_eSign
|
|
1428
1456
|
sender_job_title == o.sender_job_title &&
|
1429
1457
|
sender_name == o.sender_name &&
|
1430
1458
|
sender_user_id == o.sender_user_id &&
|
1459
|
+
signature_type == o.signature_type &&
|
1460
|
+
signature_type_value == o.signature_type_value &&
|
1431
1461
|
sign_date == o.sign_date &&
|
1432
1462
|
signed == o.signed &&
|
1433
1463
|
signed_date == o.signed_date &&
|
@@ -1473,7 +1503,7 @@ module DocuSign_eSign
|
|
1473
1503
|
# Calculates hash code according to all attributes.
|
1474
1504
|
# @return [Fixnum] Hash code
|
1475
1505
|
def hash
|
1476
|
-
[access_code_required, access_codes_attempted, access_codes_failed, account_id, authentication_category, authentication_success, authentication_type, average_time_to_complete_seconds, avg_complete_seconds, capture_method, completed, completed_ts, created_date, created_on, creator, custom_field, declined_date, declined_reason, delivered_date, envelope_count, envelope_creator, envelope_id, envelope_initial_send_ts, envelopes_billed, envelopes_completed, envelopes_completed_count, envelopes_declined, envelopes_sent, envelopes_sent_count, envelopes_voided, envelope_voided_reason, eod_document_description, eod_document_name, eod_document_profile_id, eod_transaction_id, eod_transaction_name, event_date, expiration_date, expired_ts, failure_reason, failures, failure_vendor_code, failure_vendor_reason, first_send_ts, group_id, group_name, hours_to_complete_end, hours_to_complete_start, id_checks_attempted, id_checks_failed, id_country, id_method, initial_send_ts, ip_address, last_activity, last_activity_date, last_modified, last_sent_date, last_used, metadata_removed, not_signed, number_of_authenticated_recipients, number_of_completed_signatures, number_of_documents, number_of_pages, number_of_recipients, number_of_sends, number_of_signers, number_of_total_documents, number_of_total_pages, number_of_total_signers, number_of_unique_senders, number_total_recipients, owner, owner_mail, period_end, period_start, phone_calls_attempted, phone_calls_failed, pii_redacted, purge_date, reason_for_declining, reason_for_voiding, reassign_reason, received, recipient, recipient_action, recipient_company_name, recipient_country, recipient_email, recipient_id, recipient_name, recipient_role_name, recipient_template_role_name, recipient_title, recipient_type, recipient_user_id, remaining_signatures, routing_order, sender_account_id, sender_company_name, sender_country, sender_email, sender_ip_address, sender_job_title, sender_name, sender_user_id, sign_date, signed, signed_date, signed_on_mobile, signed_on_paper, signer_list, status, status_changed_date, status_changed_ts, status_comment, subject, successes, template_id, template_name, templates_created, templates_created_count, terminal_status_date, time_to_complete_seconds, time_to_deliver, total_documents, total_envelopes, total_pages, total_recipients, total_signers, unique_senders, user_account_email, user_account_name, user_account_status, user_count, user_id, verification_status, verification_type, view_date, voided_ts].hash
|
1506
|
+
[access_code_required, access_codes_attempted, access_codes_failed, account_id, authentication_category, authentication_success, authentication_type, average_time_to_complete_seconds, avg_complete_seconds, capture_method, completed, completed_ts, created_date, created_on, creator, custom_field, declined_date, declined_reason, delivered_date, envelope_count, envelope_creator, envelope_id, envelope_initial_send_ts, envelopes_billed, envelopes_completed, envelopes_completed_count, envelopes_declined, envelopes_sent, envelopes_sent_count, envelopes_voided, envelope_voided_reason, eod_document_description, eod_document_name, eod_document_profile_id, eod_transaction_id, eod_transaction_name, event_date, expiration_date, expired_ts, failure_reason, failures, failure_vendor_code, failure_vendor_reason, first_send_ts, group_id, group_name, hours_to_complete_end, hours_to_complete_start, id_checks_attempted, id_checks_failed, id_country, id_method, initial_send_ts, ip_address, last_activity, last_activity_date, last_modified, last_sent_date, last_used, metadata_removed, not_signed, number_of_authenticated_recipients, number_of_completed_signatures, number_of_documents, number_of_pages, number_of_recipients, number_of_sends, number_of_signers, number_of_total_documents, number_of_total_pages, number_of_total_signers, number_of_unique_senders, number_total_recipients, other_recipients_list, owner, owner_mail, period_end, period_start, phone_calls_attempted, phone_calls_failed, pii_redacted, purge_date, reason_for_declining, reason_for_voiding, reassign_reason, received, recipient, recipient_action, recipient_company_name, recipient_country, recipient_email, recipient_id, recipient_name, recipient_role_name, recipient_template_role_name, recipient_title, recipient_type, recipient_user_id, remaining_signatures, routing_order, sender_account_id, sender_company_name, sender_country, sender_email, sender_ip_address, sender_job_title, sender_name, sender_user_id, signature_type, signature_type_value, sign_date, signed, signed_date, signed_on_mobile, signed_on_paper, signer_list, status, status_changed_date, status_changed_ts, status_comment, subject, successes, template_id, template_name, templates_created, templates_created_count, terminal_status_date, time_to_complete_seconds, time_to_deliver, total_documents, total_envelopes, total_pages, total_recipients, total_signers, unique_senders, user_account_email, user_account_name, user_account_status, user_count, user_id, verification_status, verification_type, view_date, voided_ts].hash
|
1477
1507
|
end
|
1478
1508
|
|
1479
1509
|
# Builds the object from hash
|
@@ -160,8 +160,6 @@ module DocuSign_eSign
|
|
160
160
|
|
161
161
|
attr_accessor :phone_number
|
162
162
|
|
163
|
-
attr_accessor :phone_number_metadata
|
164
|
-
|
165
163
|
attr_accessor :proof_file
|
166
164
|
|
167
165
|
# Reserved:
|
@@ -321,7 +319,6 @@ module DocuSign_eSign
|
|
321
319
|
:'offline_attributes' => :'offlineAttributes',
|
322
320
|
:'phone_authentication' => :'phoneAuthentication',
|
323
321
|
:'phone_number' => :'phoneNumber',
|
324
|
-
:'phone_number_metadata' => :'phoneNumberMetadata',
|
325
322
|
:'proof_file' => :'proofFile',
|
326
323
|
:'recipient_attachments' => :'recipientAttachments',
|
327
324
|
:'recipient_authentication_status' => :'recipientAuthenticationStatus',
|
@@ -420,7 +417,6 @@ module DocuSign_eSign
|
|
420
417
|
:'offline_attributes' => :'OfflineAttributes',
|
421
418
|
:'phone_authentication' => :'RecipientPhoneAuthentication',
|
422
419
|
:'phone_number' => :'RecipientPhoneNumber',
|
423
|
-
:'phone_number_metadata' => :'PropertyMetadata',
|
424
420
|
:'proof_file' => :'RecipientProofFile',
|
425
421
|
:'recipient_attachments' => :'Array<RecipientAttachment>',
|
426
422
|
:'recipient_authentication_status' => :'AuthenticationStatus',
|
@@ -697,10 +693,6 @@ module DocuSign_eSign
|
|
697
693
|
self.phone_number = attributes[:'phoneNumber']
|
698
694
|
end
|
699
695
|
|
700
|
-
if attributes.has_key?(:'phoneNumberMetadata')
|
701
|
-
self.phone_number_metadata = attributes[:'phoneNumberMetadata']
|
702
|
-
end
|
703
|
-
|
704
696
|
if attributes.has_key?(:'proofFile')
|
705
697
|
self.proof_file = attributes[:'proofFile']
|
706
698
|
end
|
@@ -933,7 +925,6 @@ module DocuSign_eSign
|
|
933
925
|
offline_attributes == o.offline_attributes &&
|
934
926
|
phone_authentication == o.phone_authentication &&
|
935
927
|
phone_number == o.phone_number &&
|
936
|
-
phone_number_metadata == o.phone_number_metadata &&
|
937
928
|
proof_file == o.proof_file &&
|
938
929
|
recipient_attachments == o.recipient_attachments &&
|
939
930
|
recipient_authentication_status == o.recipient_authentication_status &&
|
@@ -982,7 +973,7 @@ module DocuSign_eSign
|
|
982
973
|
# Calculates hash code according to all attributes.
|
983
974
|
# @return [Fixnum] Hash code
|
984
975
|
def hash
|
985
|
-
[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, can_sign_offline, client_user_id, completed_count, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, 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, is_bulk_recipient, is_bulk_recipient_metadata, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, notary_id, note, note_metadata, offline_attributes, phone_authentication, phone_number,
|
976
|
+
[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, can_sign_offline, client_user_id, completed_count, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, 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, is_bulk_recipient, is_bulk_recipient_metadata, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, notary_id, 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
|
986
977
|
end
|
987
978
|
|
988
979
|
# Builds the object from hash
|
@@ -207,6 +207,11 @@ module DocuSign_eSign
|
|
207
207
|
|
208
208
|
attr_accessor :shared_metadata
|
209
209
|
|
210
|
+
#
|
211
|
+
attr_accessor :share_to_recipients
|
212
|
+
|
213
|
+
attr_accessor :share_to_recipients_metadata
|
214
|
+
|
210
215
|
attr_accessor :smart_contract_information
|
211
216
|
|
212
217
|
#
|
@@ -373,6 +378,8 @@ module DocuSign_eSign
|
|
373
378
|
:'sender_required_metadata' => :'senderRequiredMetadata',
|
374
379
|
:'shared' => :'shared',
|
375
380
|
:'shared_metadata' => :'sharedMetadata',
|
381
|
+
:'share_to_recipients' => :'shareToRecipients',
|
382
|
+
:'share_to_recipients_metadata' => :'shareToRecipientsMetadata',
|
376
383
|
:'smart_contract_information' => :'smartContractInformation',
|
377
384
|
:'source' => :'source',
|
378
385
|
:'status' => :'status',
|
@@ -491,6 +498,8 @@ module DocuSign_eSign
|
|
491
498
|
:'sender_required_metadata' => :'PropertyMetadata',
|
492
499
|
:'shared' => :'String',
|
493
500
|
:'shared_metadata' => :'PropertyMetadata',
|
501
|
+
:'share_to_recipients' => :'String',
|
502
|
+
:'share_to_recipients_metadata' => :'PropertyMetadata',
|
494
503
|
:'smart_contract_information' => :'SmartContractInformation',
|
495
504
|
:'source' => :'String',
|
496
505
|
:'status' => :'String',
|
@@ -848,6 +857,14 @@ module DocuSign_eSign
|
|
848
857
|
self.shared_metadata = attributes[:'sharedMetadata']
|
849
858
|
end
|
850
859
|
|
860
|
+
if attributes.has_key?(:'shareToRecipients')
|
861
|
+
self.share_to_recipients = attributes[:'shareToRecipients']
|
862
|
+
end
|
863
|
+
|
864
|
+
if attributes.has_key?(:'shareToRecipientsMetadata')
|
865
|
+
self.share_to_recipients_metadata = attributes[:'shareToRecipientsMetadata']
|
866
|
+
end
|
867
|
+
|
851
868
|
if attributes.has_key?(:'smartContractInformation')
|
852
869
|
self.smart_contract_information = attributes[:'smartContractInformation']
|
853
870
|
end
|
@@ -1083,6 +1100,8 @@ module DocuSign_eSign
|
|
1083
1100
|
sender_required_metadata == o.sender_required_metadata &&
|
1084
1101
|
shared == o.shared &&
|
1085
1102
|
shared_metadata == o.shared_metadata &&
|
1103
|
+
share_to_recipients == o.share_to_recipients &&
|
1104
|
+
share_to_recipients_metadata == o.share_to_recipients_metadata &&
|
1086
1105
|
smart_contract_information == o.smart_contract_information &&
|
1087
1106
|
source == o.source &&
|
1088
1107
|
status == o.status &&
|
@@ -1128,7 +1147,7 @@ module DocuSign_eSign
|
|
1128
1147
|
# Calculates hash code according to all attributes.
|
1129
1148
|
# @return [Fixnum] Hash code
|
1130
1149
|
def hash
|
1131
|
-
[anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, smart_contract_information, source, status, status_metadata, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
|
1150
|
+
[anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, height, height_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
|
1132
1151
|
end
|
1133
1152
|
|
1134
1153
|
# Builds the object from hash
|
@@ -39,6 +39,8 @@ module DocuSign_eSign
|
|
39
39
|
# Specifies the recipient's name.
|
40
40
|
attr_accessor :name
|
41
41
|
|
42
|
+
attr_accessor :phone_number
|
43
|
+
|
42
44
|
#
|
43
45
|
attr_accessor :recipient_signature_providers
|
44
46
|
|
@@ -65,6 +67,7 @@ module DocuSign_eSign
|
|
65
67
|
:'embedded_recipient_start_url' => :'embeddedRecipientStartURL',
|
66
68
|
:'in_person_signer_name' => :'inPersonSignerName',
|
67
69
|
:'name' => :'name',
|
70
|
+
:'phone_number' => :'phoneNumber',
|
68
71
|
:'recipient_signature_providers' => :'recipientSignatureProviders',
|
69
72
|
:'role_name' => :'roleName',
|
70
73
|
:'routing_order' => :'routingOrder',
|
@@ -85,6 +88,7 @@ module DocuSign_eSign
|
|
85
88
|
:'embedded_recipient_start_url' => :'String',
|
86
89
|
:'in_person_signer_name' => :'String',
|
87
90
|
:'name' => :'String',
|
91
|
+
:'phone_number' => :'RecipientPhoneNumber',
|
88
92
|
:'recipient_signature_providers' => :'Array<RecipientSignatureProvider>',
|
89
93
|
:'role_name' => :'String',
|
90
94
|
:'routing_order' => :'String',
|
@@ -139,6 +143,10 @@ module DocuSign_eSign
|
|
139
143
|
self.name = attributes[:'name']
|
140
144
|
end
|
141
145
|
|
146
|
+
if attributes.has_key?(:'phoneNumber')
|
147
|
+
self.phone_number = attributes[:'phoneNumber']
|
148
|
+
end
|
149
|
+
|
142
150
|
if attributes.has_key?(:'recipientSignatureProviders')
|
143
151
|
if (value = attributes[:'recipientSignatureProviders']).is_a?(Array)
|
144
152
|
self.recipient_signature_providers = value
|
@@ -189,6 +197,7 @@ module DocuSign_eSign
|
|
189
197
|
embedded_recipient_start_url == o.embedded_recipient_start_url &&
|
190
198
|
in_person_signer_name == o.in_person_signer_name &&
|
191
199
|
name == o.name &&
|
200
|
+
phone_number == o.phone_number &&
|
192
201
|
recipient_signature_providers == o.recipient_signature_providers &&
|
193
202
|
role_name == o.role_name &&
|
194
203
|
routing_order == o.routing_order &&
|
@@ -205,7 +214,7 @@ module DocuSign_eSign
|
|
205
214
|
# Calculates hash code according to all attributes.
|
206
215
|
# @return [Fixnum] Hash code
|
207
216
|
def hash
|
208
|
-
[access_code, additional_notifications, client_user_id, default_recipient, email, email_notification, embedded_recipient_start_url, in_person_signer_name, name, recipient_signature_providers, role_name, routing_order, signing_group_id, tabs].hash
|
217
|
+
[access_code, additional_notifications, client_user_id, default_recipient, email, email_notification, embedded_recipient_start_url, in_person_signer_name, name, phone_number, recipient_signature_providers, role_name, routing_order, signing_group_id, tabs].hash
|
209
218
|
end
|
210
219
|
|
211
220
|
# Builds the object from hash
|
@@ -217,6 +217,11 @@ module DocuSign_eSign
|
|
217
217
|
|
218
218
|
attr_accessor :shared_metadata
|
219
219
|
|
220
|
+
#
|
221
|
+
attr_accessor :share_to_recipients
|
222
|
+
|
223
|
+
attr_accessor :share_to_recipients_metadata
|
224
|
+
|
220
225
|
attr_accessor :smart_contract_information
|
221
226
|
|
222
227
|
#
|
@@ -387,6 +392,8 @@ module DocuSign_eSign
|
|
387
392
|
:'sender_required_metadata' => :'senderRequiredMetadata',
|
388
393
|
:'shared' => :'shared',
|
389
394
|
:'shared_metadata' => :'sharedMetadata',
|
395
|
+
:'share_to_recipients' => :'shareToRecipients',
|
396
|
+
:'share_to_recipients_metadata' => :'shareToRecipientsMetadata',
|
390
397
|
:'smart_contract_information' => :'smartContractInformation',
|
391
398
|
:'source' => :'source',
|
392
399
|
:'status' => :'status',
|
@@ -509,6 +516,8 @@ module DocuSign_eSign
|
|
509
516
|
:'sender_required_metadata' => :'PropertyMetadata',
|
510
517
|
:'shared' => :'String',
|
511
518
|
:'shared_metadata' => :'PropertyMetadata',
|
519
|
+
:'share_to_recipients' => :'String',
|
520
|
+
:'share_to_recipients_metadata' => :'PropertyMetadata',
|
512
521
|
:'smart_contract_information' => :'SmartContractInformation',
|
513
522
|
:'source' => :'String',
|
514
523
|
:'status' => :'String',
|
@@ -882,6 +891,14 @@ module DocuSign_eSign
|
|
882
891
|
self.shared_metadata = attributes[:'sharedMetadata']
|
883
892
|
end
|
884
893
|
|
894
|
+
if attributes.has_key?(:'shareToRecipients')
|
895
|
+
self.share_to_recipients = attributes[:'shareToRecipients']
|
896
|
+
end
|
897
|
+
|
898
|
+
if attributes.has_key?(:'shareToRecipientsMetadata')
|
899
|
+
self.share_to_recipients_metadata = attributes[:'shareToRecipientsMetadata']
|
900
|
+
end
|
901
|
+
|
885
902
|
if attributes.has_key?(:'smartContractInformation')
|
886
903
|
self.smart_contract_information = attributes[:'smartContractInformation']
|
887
904
|
end
|
@@ -1121,6 +1138,8 @@ module DocuSign_eSign
|
|
1121
1138
|
sender_required_metadata == o.sender_required_metadata &&
|
1122
1139
|
shared == o.shared &&
|
1123
1140
|
shared_metadata == o.shared_metadata &&
|
1141
|
+
share_to_recipients == o.share_to_recipients &&
|
1142
|
+
share_to_recipients_metadata == o.share_to_recipients_metadata &&
|
1124
1143
|
smart_contract_information == o.smart_contract_information &&
|
1125
1144
|
source == o.source &&
|
1126
1145
|
status == o.status &&
|
@@ -1166,7 +1185,7 @@ module DocuSign_eSign
|
|
1166
1185
|
# Calculates hash code according to all attributes.
|
1167
1186
|
# @return [Fixnum] Hash code
|
1168
1187
|
def hash
|
1169
|
-
[anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, formula, formula_metadata, height, height_metadata, is_payment_amount, is_payment_amount_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, smart_contract_information, source, status, status_metadata, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
|
1188
|
+
[anchor_allow_white_space_in_characters, anchor_allow_white_space_in_characters_metadata, anchor_case_sensitive, anchor_case_sensitive_metadata, anchor_horizontal_alignment, anchor_horizontal_alignment_metadata, anchor_ignore_if_not_present, anchor_ignore_if_not_present_metadata, anchor_match_whole_word, anchor_match_whole_word_metadata, anchor_string, anchor_string_metadata, anchor_tab_processor_version, anchor_tab_processor_version_metadata, anchor_units, anchor_units_metadata, anchor_x_offset, anchor_x_offset_metadata, anchor_y_offset, anchor_y_offset_metadata, bold, bold_metadata, conceal_value_on_document, conceal_value_on_document_metadata, conditional_parent_label, conditional_parent_label_metadata, conditional_parent_value, conditional_parent_value_metadata, custom_tab_id, custom_tab_id_metadata, disable_auto_size, disable_auto_size_metadata, document_id, document_id_metadata, error_details, font, font_color, font_color_metadata, font_metadata, font_size, font_size_metadata, form_order, form_order_metadata, form_page_label, form_page_label_metadata, form_page_number, form_page_number_metadata, formula, formula_metadata, height, height_metadata, is_payment_amount, is_payment_amount_metadata, italic, italic_metadata, locale_policy, locked, locked_metadata, max_length, max_length_metadata, merge_field, merge_field_xml, name, name_metadata, original_value, original_value_metadata, page_number, page_number_metadata, recipient_id, recipient_id_guid, recipient_id_guid_metadata, recipient_id_metadata, require_all, require_all_metadata, required, required_metadata, require_initial_on_shared_change, require_initial_on_shared_change_metadata, sender_required, sender_required_metadata, shared, shared_metadata, share_to_recipients, share_to_recipients_metadata, smart_contract_information, source, status, status_metadata, tab_group_labels, tab_group_labels_metadata, tab_id, tab_id_metadata, tab_label, tab_label_metadata, tab_order, tab_order_metadata, tab_type, tab_type_metadata, template_locked, template_locked_metadata, template_required, template_required_metadata, tooltip, tool_tip_metadata, underline, underline_metadata, validation_message, validation_message_metadata, validation_pattern, validation_pattern_metadata, value, value_metadata, width, width_metadata, x_position, x_position_metadata, y_position, y_position_metadata].hash
|
1170
1189
|
end
|
1171
1190
|
|
1172
1191
|
# Builds the object from hash
|
@@ -28,6 +28,11 @@ module DocuSign_eSign
|
|
28
28
|
|
29
29
|
attr_accessor :can_manage_admins_metadata
|
30
30
|
|
31
|
+
#
|
32
|
+
attr_accessor :can_manage_document_retention
|
33
|
+
|
34
|
+
attr_accessor :can_manage_document_retention_metadata
|
35
|
+
|
31
36
|
#
|
32
37
|
attr_accessor :can_manage_envelope_transfer
|
33
38
|
|
@@ -65,6 +70,8 @@ module DocuSign_eSign
|
|
65
70
|
:'can_manage_account_settings_metadata' => :'canManageAccountSettingsMetadata',
|
66
71
|
:'can_manage_admins' => :'canManageAdmins',
|
67
72
|
:'can_manage_admins_metadata' => :'canManageAdminsMetadata',
|
73
|
+
:'can_manage_document_retention' => :'canManageDocumentRetention',
|
74
|
+
:'can_manage_document_retention_metadata' => :'canManageDocumentRetentionMetadata',
|
68
75
|
:'can_manage_envelope_transfer' => :'canManageEnvelopeTransfer',
|
69
76
|
:'can_manage_envelope_transfer_metadata' => :'canManageEnvelopeTransferMetadata',
|
70
77
|
:'can_manage_reporting' => :'canManageReporting',
|
@@ -88,6 +95,8 @@ module DocuSign_eSign
|
|
88
95
|
:'can_manage_account_settings_metadata' => :'SettingsMetadata',
|
89
96
|
:'can_manage_admins' => :'String',
|
90
97
|
:'can_manage_admins_metadata' => :'SettingsMetadata',
|
98
|
+
:'can_manage_document_retention' => :'String',
|
99
|
+
:'can_manage_document_retention_metadata' => :'SettingsMetadata',
|
91
100
|
:'can_manage_envelope_transfer' => :'String',
|
92
101
|
:'can_manage_envelope_transfer_metadata' => :'SettingsMetadata',
|
93
102
|
:'can_manage_reporting' => :'String',
|
@@ -134,6 +143,14 @@ module DocuSign_eSign
|
|
134
143
|
self.can_manage_admins_metadata = attributes[:'canManageAdminsMetadata']
|
135
144
|
end
|
136
145
|
|
146
|
+
if attributes.has_key?(:'canManageDocumentRetention')
|
147
|
+
self.can_manage_document_retention = attributes[:'canManageDocumentRetention']
|
148
|
+
end
|
149
|
+
|
150
|
+
if attributes.has_key?(:'canManageDocumentRetentionMetadata')
|
151
|
+
self.can_manage_document_retention_metadata = attributes[:'canManageDocumentRetentionMetadata']
|
152
|
+
end
|
153
|
+
|
137
154
|
if attributes.has_key?(:'canManageEnvelopeTransfer')
|
138
155
|
self.can_manage_envelope_transfer = attributes[:'canManageEnvelopeTransfer']
|
139
156
|
end
|
@@ -203,6 +220,8 @@ module DocuSign_eSign
|
|
203
220
|
can_manage_account_settings_metadata == o.can_manage_account_settings_metadata &&
|
204
221
|
can_manage_admins == o.can_manage_admins &&
|
205
222
|
can_manage_admins_metadata == o.can_manage_admins_metadata &&
|
223
|
+
can_manage_document_retention == o.can_manage_document_retention &&
|
224
|
+
can_manage_document_retention_metadata == o.can_manage_document_retention_metadata &&
|
206
225
|
can_manage_envelope_transfer == o.can_manage_envelope_transfer &&
|
207
226
|
can_manage_envelope_transfer_metadata == o.can_manage_envelope_transfer_metadata &&
|
208
227
|
can_manage_reporting == o.can_manage_reporting &&
|
@@ -225,7 +244,7 @@ module DocuSign_eSign
|
|
225
244
|
# Calculates hash code according to all attributes.
|
226
245
|
# @return [Fixnum] Hash code
|
227
246
|
def hash
|
228
|
-
[can_manage_account_security_settings, can_manage_account_security_settings_metadata, can_manage_account_settings, can_manage_account_settings_metadata, can_manage_admins, can_manage_admins_metadata, can_manage_envelope_transfer, can_manage_envelope_transfer_metadata, can_manage_reporting, can_manage_reporting_metadata, can_manage_sharing, can_manage_sharing_metadata, can_manage_signing_groups, can_manage_signing_groups_metadata, can_manage_users, can_manage_users_metadata, can_view_users].hash
|
247
|
+
[can_manage_account_security_settings, can_manage_account_security_settings_metadata, can_manage_account_settings, can_manage_account_settings_metadata, can_manage_admins, can_manage_admins_metadata, can_manage_document_retention, can_manage_document_retention_metadata, can_manage_envelope_transfer, can_manage_envelope_transfer_metadata, can_manage_reporting, can_manage_reporting_metadata, can_manage_sharing, can_manage_sharing_metadata, can_manage_signing_groups, can_manage_signing_groups_metadata, can_manage_users, can_manage_users_metadata, can_view_users].hash
|
229
248
|
end
|
230
249
|
|
231
250
|
# Builds the object from hash
|
@@ -48,6 +48,9 @@ module DocuSign_eSign
|
|
48
48
|
# Specifies the user signature name.
|
49
49
|
attr_accessor :signature_name
|
50
50
|
|
51
|
+
#
|
52
|
+
attr_accessor :signature_type
|
53
|
+
|
51
54
|
#
|
52
55
|
attr_accessor :stamp_format
|
53
56
|
|
@@ -69,6 +72,7 @@ module DocuSign_eSign
|
|
69
72
|
:'signature_id' => :'signatureId',
|
70
73
|
:'signature_initials' => :'signatureInitials',
|
71
74
|
:'signature_name' => :'signatureName',
|
75
|
+
:'signature_type' => :'signatureType',
|
72
76
|
:'stamp_format' => :'stampFormat',
|
73
77
|
:'stamp_size_mm' => :'stampSizeMM'
|
74
78
|
}
|
@@ -89,6 +93,7 @@ module DocuSign_eSign
|
|
89
93
|
:'signature_id' => :'String',
|
90
94
|
:'signature_initials' => :'String',
|
91
95
|
:'signature_name' => :'String',
|
96
|
+
:'signature_type' => :'String',
|
92
97
|
:'stamp_format' => :'String',
|
93
98
|
:'stamp_size_mm' => :'String'
|
94
99
|
}
|
@@ -150,6 +155,10 @@ module DocuSign_eSign
|
|
150
155
|
self.signature_name = attributes[:'signatureName']
|
151
156
|
end
|
152
157
|
|
158
|
+
if attributes.has_key?(:'signatureType')
|
159
|
+
self.signature_type = attributes[:'signatureType']
|
160
|
+
end
|
161
|
+
|
153
162
|
if attributes.has_key?(:'stampFormat')
|
154
163
|
self.stamp_format = attributes[:'stampFormat']
|
155
164
|
end
|
@@ -189,6 +198,7 @@ module DocuSign_eSign
|
|
189
198
|
signature_id == o.signature_id &&
|
190
199
|
signature_initials == o.signature_initials &&
|
191
200
|
signature_name == o.signature_name &&
|
201
|
+
signature_type == o.signature_type &&
|
192
202
|
stamp_format == o.stamp_format &&
|
193
203
|
stamp_size_mm == o.stamp_size_mm
|
194
204
|
end
|
@@ -202,7 +212,7 @@ module DocuSign_eSign
|
|
202
212
|
# Calculates hash code according to all attributes.
|
203
213
|
# @return [Fixnum] Hash code
|
204
214
|
def hash
|
205
|
-
[date_stamp_properties, disallow_user_resize_stamp, external_id, image_type, is_default, nrds_id, nrds_last_name, phonetic_name, signature_font, signature_id, signature_initials, signature_name, stamp_format, stamp_size_mm].hash
|
215
|
+
[date_stamp_properties, disallow_user_resize_stamp, external_id, image_type, is_default, nrds_id, nrds_last_name, phonetic_name, signature_font, signature_id, signature_initials, signature_name, signature_type, stamp_format, stamp_size_mm].hash
|
206
216
|
end
|
207
217
|
|
208
218
|
# Builds the object from hash
|
@@ -160,8 +160,6 @@ module DocuSign_eSign
|
|
160
160
|
|
161
161
|
attr_accessor :phone_number
|
162
162
|
|
163
|
-
attr_accessor :phone_number_metadata
|
164
|
-
|
165
163
|
attr_accessor :proof_file
|
166
164
|
|
167
165
|
# Reserved:
|
@@ -327,7 +325,6 @@ module DocuSign_eSign
|
|
327
325
|
:'offline_attributes' => :'offlineAttributes',
|
328
326
|
:'phone_authentication' => :'phoneAuthentication',
|
329
327
|
:'phone_number' => :'phoneNumber',
|
330
|
-
:'phone_number_metadata' => :'phoneNumberMetadata',
|
331
328
|
:'proof_file' => :'proofFile',
|
332
329
|
:'recipient_attachments' => :'recipientAttachments',
|
333
330
|
:'recipient_authentication_status' => :'recipientAuthenticationStatus',
|
@@ -428,7 +425,6 @@ module DocuSign_eSign
|
|
428
425
|
:'offline_attributes' => :'OfflineAttributes',
|
429
426
|
:'phone_authentication' => :'RecipientPhoneAuthentication',
|
430
427
|
:'phone_number' => :'RecipientPhoneNumber',
|
431
|
-
:'phone_number_metadata' => :'PropertyMetadata',
|
432
428
|
:'proof_file' => :'RecipientProofFile',
|
433
429
|
:'recipient_attachments' => :'Array<RecipientAttachment>',
|
434
430
|
:'recipient_authentication_status' => :'AuthenticationStatus',
|
@@ -707,10 +703,6 @@ module DocuSign_eSign
|
|
707
703
|
self.phone_number = attributes[:'phoneNumber']
|
708
704
|
end
|
709
705
|
|
710
|
-
if attributes.has_key?(:'phoneNumberMetadata')
|
711
|
-
self.phone_number_metadata = attributes[:'phoneNumberMetadata']
|
712
|
-
end
|
713
|
-
|
714
706
|
if attributes.has_key?(:'proofFile')
|
715
707
|
self.proof_file = attributes[:'proofFile']
|
716
708
|
end
|
@@ -951,7 +943,6 @@ module DocuSign_eSign
|
|
951
943
|
offline_attributes == o.offline_attributes &&
|
952
944
|
phone_authentication == o.phone_authentication &&
|
953
945
|
phone_number == o.phone_number &&
|
954
|
-
phone_number_metadata == o.phone_number_metadata &&
|
955
946
|
proof_file == o.proof_file &&
|
956
947
|
recipient_attachments == o.recipient_attachments &&
|
957
948
|
recipient_authentication_status == o.recipient_authentication_status &&
|
@@ -1002,7 +993,7 @@ module DocuSign_eSign
|
|
1002
993
|
# Calculates hash code according to all attributes.
|
1003
994
|
# @return [Fixnum] Hash code
|
1004
995
|
def hash
|
1005
|
-
[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, can_sign_offline, client_user_id, completed_count, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, 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, is_bulk_recipient, is_bulk_recipient_metadata, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, notary_id, note, note_metadata, offline_attributes, phone_authentication, phone_number,
|
996
|
+
[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, can_sign_offline, client_user_id, completed_count, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, 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, is_bulk_recipient, is_bulk_recipient_metadata, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, notary_id, 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, witness_for, witness_for_guid].hash
|
1006
997
|
end
|
1007
998
|
|
1008
999
|
# Builds the object from hash
|