docusign_esign 3.10.0 → 3.12.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 +13 -1
- data/docusign_esign-2.12.0.rc1.gem +0 -0
- data/docusign_esign-3.12.0.rc1.gem +0 -0
- data/docusign_esign.gemspec +1 -0
- data/lib/docusign_esign/api/envelopes_api.rb +0 -287
- data/lib/docusign_esign/api/users_api.rb +45 -9
- 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 +31 -1
- data/lib/docusign_esign/models/account_billing_plan_response.rb +11 -1
- data/lib/docusign_esign/models/account_signature_definition.rb +11 -1
- data/lib/docusign_esign/models/agent.rb +20 -1
- data/lib/docusign_esign/models/carbon_copy.rb +20 -1
- data/lib/docusign_esign/models/certified_delivery.rb +20 -1
- data/lib/docusign_esign/models/credit_card_information.rb +24 -4
- data/lib/docusign_esign/models/downgrade_billing_plan_information.rb +44 -4
- data/lib/docusign_esign/models/downgrade_plan_update_response.rb +54 -4
- data/lib/docusign_esign/models/editor.rb +20 -1
- data/lib/docusign_esign/models/envelope_form_data.rb +1 -1
- data/lib/docusign_esign/models/in_person_signer.rb +11 -1
- data/lib/docusign_esign/models/initial_here.rb +11 -1
- data/lib/docusign_esign/models/intermediary.rb +20 -1
- data/lib/docusign_esign/models/notary_host.rb +11 -1
- data/lib/docusign_esign/models/notary_recipient.rb +20 -1
- data/lib/docusign_esign/models/payment_method_with_options.rb +13 -1
- data/lib/docusign_esign/models/prefill_form_data.rb +216 -0
- data/lib/docusign_esign/models/prefill_tabs.rb +25 -1
- data/lib/docusign_esign/models/recipient_preview_request.rb +10 -1
- data/lib/docusign_esign/models/recipient_proof_file.rb +11 -1
- data/lib/docusign_esign/models/recipient_token_client_ur_ls.rb +174 -0
- data/lib/docusign_esign/models/recipient_view_request.rb +10 -1
- data/lib/docusign_esign/models/report_in_product_run_response_row_fields.rb +121 -1
- data/lib/docusign_esign/models/seal_sign.rb +11 -1
- data/lib/docusign_esign/models/sender_company.rb +1011 -0
- data/lib/docusign_esign/models/sender_name.rb +1011 -0
- data/lib/docusign_esign/models/sign_here.rb +11 -1
- data/lib/docusign_esign/models/signer.rb +20 -1
- data/lib/docusign_esign/models/signer_attachment.rb +11 -1
- data/lib/docusign_esign/models/template_role.rb +10 -1
- data/lib/docusign_esign/models/template_tabs.rb +1 -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 +20 -1
- data/lib/docusign_esign/version.rb +1 -1
- data/lib/docusign_esign.rb +5 -3
- data/runLinter.sh +1 -0
- data/tests/Gemfile.lock +3 -3
- metadata +29 -5
- data/docusign_esign-2.10.0.gem +0 -0
- data/docusign_esign-2.10.0.rc1.gem +0 -0
- data/docusign_esign-3.10.0.rc1.gem +0 -0
@@ -15,6 +15,9 @@ module DocuSign_eSign
|
|
15
15
|
class CreditCardInformation
|
16
16
|
attr_accessor :address
|
17
17
|
|
18
|
+
#
|
19
|
+
attr_accessor :card_last_digits
|
20
|
+
|
18
21
|
# The number on the credit card.
|
19
22
|
attr_accessor :card_number
|
20
23
|
|
@@ -33,16 +36,21 @@ module DocuSign_eSign
|
|
33
36
|
# The exact name printed on the credit card.
|
34
37
|
attr_accessor :name_on_card
|
35
38
|
|
39
|
+
#
|
40
|
+
attr_accessor :tokenized_card
|
41
|
+
|
36
42
|
# Attribute mapping from ruby-style variable name to JSON key.
|
37
43
|
def self.attribute_map
|
38
44
|
{
|
39
45
|
:'address' => :'address',
|
46
|
+
:'card_last_digits' => :'cardLastDigits',
|
40
47
|
:'card_number' => :'cardNumber',
|
41
48
|
:'card_type' => :'cardType',
|
42
49
|
:'cv_number' => :'cvNumber',
|
43
50
|
:'expiration_month' => :'expirationMonth',
|
44
51
|
:'expiration_year' => :'expirationYear',
|
45
|
-
:'name_on_card' => :'nameOnCard'
|
52
|
+
:'name_on_card' => :'nameOnCard',
|
53
|
+
:'tokenized_card' => :'tokenizedCard'
|
46
54
|
}
|
47
55
|
end
|
48
56
|
|
@@ -50,12 +58,14 @@ module DocuSign_eSign
|
|
50
58
|
def self.swagger_types
|
51
59
|
{
|
52
60
|
:'address' => :'AddressInformation',
|
61
|
+
:'card_last_digits' => :'String',
|
53
62
|
:'card_number' => :'String',
|
54
63
|
:'card_type' => :'String',
|
55
64
|
:'cv_number' => :'String',
|
56
65
|
:'expiration_month' => :'String',
|
57
66
|
:'expiration_year' => :'String',
|
58
|
-
:'name_on_card' => :'String'
|
67
|
+
:'name_on_card' => :'String',
|
68
|
+
:'tokenized_card' => :'String'
|
59
69
|
}
|
60
70
|
end
|
61
71
|
|
@@ -71,6 +81,10 @@ module DocuSign_eSign
|
|
71
81
|
self.address = attributes[:'address']
|
72
82
|
end
|
73
83
|
|
84
|
+
if attributes.has_key?(:'cardLastDigits')
|
85
|
+
self.card_last_digits = attributes[:'cardLastDigits']
|
86
|
+
end
|
87
|
+
|
74
88
|
if attributes.has_key?(:'cardNumber')
|
75
89
|
self.card_number = attributes[:'cardNumber']
|
76
90
|
end
|
@@ -94,6 +108,10 @@ module DocuSign_eSign
|
|
94
108
|
if attributes.has_key?(:'nameOnCard')
|
95
109
|
self.name_on_card = attributes[:'nameOnCard']
|
96
110
|
end
|
111
|
+
|
112
|
+
if attributes.has_key?(:'tokenizedCard')
|
113
|
+
self.tokenized_card = attributes[:'tokenizedCard']
|
114
|
+
end
|
97
115
|
end
|
98
116
|
|
99
117
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -115,12 +133,14 @@ module DocuSign_eSign
|
|
115
133
|
return true if self.equal?(o)
|
116
134
|
self.class == o.class &&
|
117
135
|
address == o.address &&
|
136
|
+
card_last_digits == o.card_last_digits &&
|
118
137
|
card_number == o.card_number &&
|
119
138
|
card_type == o.card_type &&
|
120
139
|
cv_number == o.cv_number &&
|
121
140
|
expiration_month == o.expiration_month &&
|
122
141
|
expiration_year == o.expiration_year &&
|
123
|
-
name_on_card == o.name_on_card
|
142
|
+
name_on_card == o.name_on_card &&
|
143
|
+
tokenized_card == o.tokenized_card
|
124
144
|
end
|
125
145
|
|
126
146
|
# @see the `==` method
|
@@ -132,7 +152,7 @@ module DocuSign_eSign
|
|
132
152
|
# Calculates hash code according to all attributes.
|
133
153
|
# @return [Fixnum] Hash code
|
134
154
|
def hash
|
135
|
-
[address, card_number, card_type, cv_number, expiration_month, expiration_year, name_on_card].hash
|
155
|
+
[address, card_last_digits, card_number, card_type, cv_number, expiration_month, expiration_year, name_on_card, tokenized_card].hash
|
136
156
|
end
|
137
157
|
|
138
158
|
# Builds the object from hash
|
@@ -18,11 +18,27 @@ module DocuSign_eSign
|
|
18
18
|
|
19
19
|
attr_accessor :plan_information
|
20
20
|
|
21
|
+
#
|
22
|
+
attr_accessor :promo_code
|
23
|
+
|
24
|
+
#
|
25
|
+
attr_accessor :sale_discount
|
26
|
+
|
27
|
+
#
|
28
|
+
attr_accessor :sale_discount_periods
|
29
|
+
|
30
|
+
#
|
31
|
+
attr_accessor :sale_discount_type
|
32
|
+
|
21
33
|
# Attribute mapping from ruby-style variable name to JSON key.
|
22
34
|
def self.attribute_map
|
23
35
|
{
|
24
36
|
:'downgrade_event_type' => :'downgradeEventType',
|
25
|
-
:'plan_information' => :'planInformation'
|
37
|
+
:'plan_information' => :'planInformation',
|
38
|
+
:'promo_code' => :'promoCode',
|
39
|
+
:'sale_discount' => :'saleDiscount',
|
40
|
+
:'sale_discount_periods' => :'saleDiscountPeriods',
|
41
|
+
:'sale_discount_type' => :'saleDiscountType'
|
26
42
|
}
|
27
43
|
end
|
28
44
|
|
@@ -30,7 +46,11 @@ module DocuSign_eSign
|
|
30
46
|
def self.swagger_types
|
31
47
|
{
|
32
48
|
:'downgrade_event_type' => :'String',
|
33
|
-
:'plan_information' => :'PlanInformation'
|
49
|
+
:'plan_information' => :'PlanInformation',
|
50
|
+
:'promo_code' => :'String',
|
51
|
+
:'sale_discount' => :'String',
|
52
|
+
:'sale_discount_periods' => :'String',
|
53
|
+
:'sale_discount_type' => :'String'
|
34
54
|
}
|
35
55
|
end
|
36
56
|
|
@@ -49,6 +69,22 @@ module DocuSign_eSign
|
|
49
69
|
if attributes.has_key?(:'planInformation')
|
50
70
|
self.plan_information = attributes[:'planInformation']
|
51
71
|
end
|
72
|
+
|
73
|
+
if attributes.has_key?(:'promoCode')
|
74
|
+
self.promo_code = attributes[:'promoCode']
|
75
|
+
end
|
76
|
+
|
77
|
+
if attributes.has_key?(:'saleDiscount')
|
78
|
+
self.sale_discount = attributes[:'saleDiscount']
|
79
|
+
end
|
80
|
+
|
81
|
+
if attributes.has_key?(:'saleDiscountPeriods')
|
82
|
+
self.sale_discount_periods = attributes[:'saleDiscountPeriods']
|
83
|
+
end
|
84
|
+
|
85
|
+
if attributes.has_key?(:'saleDiscountType')
|
86
|
+
self.sale_discount_type = attributes[:'saleDiscountType']
|
87
|
+
end
|
52
88
|
end
|
53
89
|
|
54
90
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -70,7 +106,11 @@ module DocuSign_eSign
|
|
70
106
|
return true if self.equal?(o)
|
71
107
|
self.class == o.class &&
|
72
108
|
downgrade_event_type == o.downgrade_event_type &&
|
73
|
-
plan_information == o.plan_information
|
109
|
+
plan_information == o.plan_information &&
|
110
|
+
promo_code == o.promo_code &&
|
111
|
+
sale_discount == o.sale_discount &&
|
112
|
+
sale_discount_periods == o.sale_discount_periods &&
|
113
|
+
sale_discount_type == o.sale_discount_type
|
74
114
|
end
|
75
115
|
|
76
116
|
# @see the `==` method
|
@@ -82,7 +122,7 @@ module DocuSign_eSign
|
|
82
122
|
# Calculates hash code according to all attributes.
|
83
123
|
# @return [Fixnum] Hash code
|
84
124
|
def hash
|
85
|
-
[downgrade_event_type, plan_information].hash
|
125
|
+
[downgrade_event_type, plan_information, promo_code, sale_discount, sale_discount_periods, sale_discount_type].hash
|
86
126
|
end
|
87
127
|
|
88
128
|
# Builds the object from hash
|
@@ -16,6 +16,9 @@ module DocuSign_eSign
|
|
16
16
|
#
|
17
17
|
attr_accessor :account_payment_method
|
18
18
|
|
19
|
+
#
|
20
|
+
attr_accessor :discount_applied
|
21
|
+
|
19
22
|
#
|
20
23
|
attr_accessor :downgrade_effective_date
|
21
24
|
|
@@ -34,16 +37,33 @@ module DocuSign_eSign
|
|
34
37
|
#
|
35
38
|
attr_accessor :message
|
36
39
|
|
40
|
+
#
|
41
|
+
attr_accessor :promo_code
|
42
|
+
|
43
|
+
#
|
44
|
+
attr_accessor :sale_discount
|
45
|
+
|
46
|
+
#
|
47
|
+
attr_accessor :sale_discount_periods
|
48
|
+
|
49
|
+
#
|
50
|
+
attr_accessor :sale_discount_type
|
51
|
+
|
37
52
|
# Attribute mapping from ruby-style variable name to JSON key.
|
38
53
|
def self.attribute_map
|
39
54
|
{
|
40
55
|
:'account_payment_method' => :'accountPaymentMethod',
|
56
|
+
:'discount_applied' => :'discountApplied',
|
41
57
|
:'downgrade_effective_date' => :'downgradeEffectiveDate',
|
42
58
|
:'downgrade_payment_cycle' => :'downgradePaymentCycle',
|
43
59
|
:'downgrade_plan_id' => :'downgradePlanId',
|
44
60
|
:'downgrade_plan_name' => :'downgradePlanName',
|
45
61
|
:'downgrade_request_status' => :'downgradeRequestStatus',
|
46
|
-
:'message' => :'message'
|
62
|
+
:'message' => :'message',
|
63
|
+
:'promo_code' => :'promoCode',
|
64
|
+
:'sale_discount' => :'saleDiscount',
|
65
|
+
:'sale_discount_periods' => :'saleDiscountPeriods',
|
66
|
+
:'sale_discount_type' => :'saleDiscountType'
|
47
67
|
}
|
48
68
|
end
|
49
69
|
|
@@ -51,12 +71,17 @@ module DocuSign_eSign
|
|
51
71
|
def self.swagger_types
|
52
72
|
{
|
53
73
|
:'account_payment_method' => :'String',
|
74
|
+
:'discount_applied' => :'String',
|
54
75
|
:'downgrade_effective_date' => :'String',
|
55
76
|
:'downgrade_payment_cycle' => :'String',
|
56
77
|
:'downgrade_plan_id' => :'String',
|
57
78
|
:'downgrade_plan_name' => :'String',
|
58
79
|
:'downgrade_request_status' => :'String',
|
59
|
-
:'message' => :'String'
|
80
|
+
:'message' => :'String',
|
81
|
+
:'promo_code' => :'String',
|
82
|
+
:'sale_discount' => :'String',
|
83
|
+
:'sale_discount_periods' => :'String',
|
84
|
+
:'sale_discount_type' => :'String'
|
60
85
|
}
|
61
86
|
end
|
62
87
|
|
@@ -72,6 +97,10 @@ module DocuSign_eSign
|
|
72
97
|
self.account_payment_method = attributes[:'accountPaymentMethod']
|
73
98
|
end
|
74
99
|
|
100
|
+
if attributes.has_key?(:'discountApplied')
|
101
|
+
self.discount_applied = attributes[:'discountApplied']
|
102
|
+
end
|
103
|
+
|
75
104
|
if attributes.has_key?(:'downgradeEffectiveDate')
|
76
105
|
self.downgrade_effective_date = attributes[:'downgradeEffectiveDate']
|
77
106
|
end
|
@@ -95,6 +124,22 @@ module DocuSign_eSign
|
|
95
124
|
if attributes.has_key?(:'message')
|
96
125
|
self.message = attributes[:'message']
|
97
126
|
end
|
127
|
+
|
128
|
+
if attributes.has_key?(:'promoCode')
|
129
|
+
self.promo_code = attributes[:'promoCode']
|
130
|
+
end
|
131
|
+
|
132
|
+
if attributes.has_key?(:'saleDiscount')
|
133
|
+
self.sale_discount = attributes[:'saleDiscount']
|
134
|
+
end
|
135
|
+
|
136
|
+
if attributes.has_key?(:'saleDiscountPeriods')
|
137
|
+
self.sale_discount_periods = attributes[:'saleDiscountPeriods']
|
138
|
+
end
|
139
|
+
|
140
|
+
if attributes.has_key?(:'saleDiscountType')
|
141
|
+
self.sale_discount_type = attributes[:'saleDiscountType']
|
142
|
+
end
|
98
143
|
end
|
99
144
|
|
100
145
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -116,12 +161,17 @@ module DocuSign_eSign
|
|
116
161
|
return true if self.equal?(o)
|
117
162
|
self.class == o.class &&
|
118
163
|
account_payment_method == o.account_payment_method &&
|
164
|
+
discount_applied == o.discount_applied &&
|
119
165
|
downgrade_effective_date == o.downgrade_effective_date &&
|
120
166
|
downgrade_payment_cycle == o.downgrade_payment_cycle &&
|
121
167
|
downgrade_plan_id == o.downgrade_plan_id &&
|
122
168
|
downgrade_plan_name == o.downgrade_plan_name &&
|
123
169
|
downgrade_request_status == o.downgrade_request_status &&
|
124
|
-
message == o.message
|
170
|
+
message == o.message &&
|
171
|
+
promo_code == o.promo_code &&
|
172
|
+
sale_discount == o.sale_discount &&
|
173
|
+
sale_discount_periods == o.sale_discount_periods &&
|
174
|
+
sale_discount_type == o.sale_discount_type
|
125
175
|
end
|
126
176
|
|
127
177
|
# @see the `==` method
|
@@ -133,7 +183,7 @@ module DocuSign_eSign
|
|
133
183
|
# Calculates hash code according to all attributes.
|
134
184
|
# @return [Fixnum] Hash code
|
135
185
|
def hash
|
136
|
-
[account_payment_method, downgrade_effective_date, downgrade_payment_cycle, downgrade_plan_id, downgrade_plan_name, downgrade_request_status, message].hash
|
186
|
+
[account_payment_method, discount_applied, downgrade_effective_date, downgrade_payment_cycle, downgrade_plan_id, downgrade_plan_name, downgrade_request_status, message, promo_code, sale_discount, sale_discount_periods, sale_discount_type].hash
|
137
187
|
end
|
138
188
|
|
139
189
|
# Builds the object from hash
|
@@ -27,6 +27,9 @@ module DocuSign_eSign
|
|
27
27
|
#
|
28
28
|
attr_accessor :allow_system_override_for_locked_recipient
|
29
29
|
|
30
|
+
#
|
31
|
+
attr_accessor :auto_responded_reason
|
32
|
+
|
30
33
|
# Specifies whether the recipient is embedded or remote. If the `clientUserId` property is not null then the recipient is embedded. Note that if the `ClientUserId` property is set and either `SignerMustHaveAccount` or `SignerMustLoginToSign` property of the account settings is set to **true**, an error is generated on sending.ng. Maximum length: 100 characters.
|
31
34
|
attr_accessor :client_user_id
|
32
35
|
|
@@ -121,6 +124,8 @@ module DocuSign_eSign
|
|
121
124
|
|
122
125
|
attr_accessor :phone_authentication
|
123
126
|
|
127
|
+
attr_accessor :phone_number
|
128
|
+
|
124
129
|
# Reserved:
|
125
130
|
attr_accessor :recipient_attachments
|
126
131
|
|
@@ -204,6 +209,7 @@ module DocuSign_eSign
|
|
204
209
|
:'add_access_code_to_email' => :'addAccessCodeToEmail',
|
205
210
|
:'additional_notifications' => :'additionalNotifications',
|
206
211
|
:'allow_system_override_for_locked_recipient' => :'allowSystemOverrideForLockedRecipient',
|
212
|
+
:'auto_responded_reason' => :'autoRespondedReason',
|
207
213
|
:'client_user_id' => :'clientUserId',
|
208
214
|
:'completed_count' => :'completedCount',
|
209
215
|
:'custom_fields' => :'customFields',
|
@@ -240,6 +246,7 @@ module DocuSign_eSign
|
|
240
246
|
:'note' => :'note',
|
241
247
|
:'note_metadata' => :'noteMetadata',
|
242
248
|
:'phone_authentication' => :'phoneAuthentication',
|
249
|
+
:'phone_number' => :'phoneNumber',
|
243
250
|
:'recipient_attachments' => :'recipientAttachments',
|
244
251
|
:'recipient_authentication_status' => :'recipientAuthenticationStatus',
|
245
252
|
:'recipient_feature_metadata' => :'recipientFeatureMetadata',
|
@@ -278,6 +285,7 @@ module DocuSign_eSign
|
|
278
285
|
:'add_access_code_to_email' => :'String',
|
279
286
|
:'additional_notifications' => :'Array<RecipientAdditionalNotification>',
|
280
287
|
:'allow_system_override_for_locked_recipient' => :'String',
|
288
|
+
:'auto_responded_reason' => :'String',
|
281
289
|
:'client_user_id' => :'String',
|
282
290
|
:'completed_count' => :'String',
|
283
291
|
:'custom_fields' => :'Array<String>',
|
@@ -314,6 +322,7 @@ module DocuSign_eSign
|
|
314
322
|
:'note' => :'String',
|
315
323
|
:'note_metadata' => :'PropertyMetadata',
|
316
324
|
:'phone_authentication' => :'RecipientPhoneAuthentication',
|
325
|
+
:'phone_number' => :'RecipientPhoneNumber',
|
317
326
|
:'recipient_attachments' => :'Array<RecipientAttachment>',
|
318
327
|
:'recipient_authentication_status' => :'AuthenticationStatus',
|
319
328
|
:'recipient_feature_metadata' => :'Array<FeatureAvailableMetadata>',
|
@@ -374,6 +383,10 @@ module DocuSign_eSign
|
|
374
383
|
self.allow_system_override_for_locked_recipient = attributes[:'allowSystemOverrideForLockedRecipient']
|
375
384
|
end
|
376
385
|
|
386
|
+
if attributes.has_key?(:'autoRespondedReason')
|
387
|
+
self.auto_responded_reason = attributes[:'autoRespondedReason']
|
388
|
+
end
|
389
|
+
|
377
390
|
if attributes.has_key?(:'clientUserId')
|
378
391
|
self.client_user_id = attributes[:'clientUserId']
|
379
392
|
end
|
@@ -522,6 +535,10 @@ module DocuSign_eSign
|
|
522
535
|
self.phone_authentication = attributes[:'phoneAuthentication']
|
523
536
|
end
|
524
537
|
|
538
|
+
if attributes.has_key?(:'phoneNumber')
|
539
|
+
self.phone_number = attributes[:'phoneNumber']
|
540
|
+
end
|
541
|
+
|
525
542
|
if attributes.has_key?(:'recipientAttachments')
|
526
543
|
if (value = attributes[:'recipientAttachments']).is_a?(Array)
|
527
544
|
self.recipient_attachments = value
|
@@ -662,6 +679,7 @@ module DocuSign_eSign
|
|
662
679
|
add_access_code_to_email == o.add_access_code_to_email &&
|
663
680
|
additional_notifications == o.additional_notifications &&
|
664
681
|
allow_system_override_for_locked_recipient == o.allow_system_override_for_locked_recipient &&
|
682
|
+
auto_responded_reason == o.auto_responded_reason &&
|
665
683
|
client_user_id == o.client_user_id &&
|
666
684
|
completed_count == o.completed_count &&
|
667
685
|
custom_fields == o.custom_fields &&
|
@@ -698,6 +716,7 @@ module DocuSign_eSign
|
|
698
716
|
note == o.note &&
|
699
717
|
note_metadata == o.note_metadata &&
|
700
718
|
phone_authentication == o.phone_authentication &&
|
719
|
+
phone_number == o.phone_number &&
|
701
720
|
recipient_attachments == o.recipient_attachments &&
|
702
721
|
recipient_authentication_status == o.recipient_authentication_status &&
|
703
722
|
recipient_feature_metadata == o.recipient_feature_metadata &&
|
@@ -736,7 +755,7 @@ module DocuSign_eSign
|
|
736
755
|
# Calculates hash code according to all attributes.
|
737
756
|
# @return [Fixnum] Hash code
|
738
757
|
def hash
|
739
|
-
[access_code, access_code_metadata, add_access_code_to_email, additional_notifications, allow_system_override_for_locked_recipient, client_user_id, completed_count, custom_fields, declined_date_time, declined_reason, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, embedded_recipient_start_url, error_details, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, note, note_metadata, phone_authentication, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, role_name, routing_order, routing_order_metadata, sent_date_time, signed_date_time, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, template_locked, template_required, total_tab_count, user_id].hash
|
758
|
+
[access_code, access_code_metadata, add_access_code_to_email, additional_notifications, allow_system_override_for_locked_recipient, auto_responded_reason, client_user_id, completed_count, custom_fields, declined_date_time, declined_reason, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, embedded_recipient_start_url, error_details, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, note, note_metadata, phone_authentication, phone_number, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, role_name, routing_order, routing_order_metadata, sent_date_time, signed_date_time, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, template_locked, template_required, total_tab_count, user_id].hash
|
740
759
|
end
|
741
760
|
|
742
761
|
# Builds the object from hash
|
@@ -52,7 +52,7 @@ module DocuSign_eSign
|
|
52
52
|
:'email_subject' => :'String',
|
53
53
|
:'envelope_id' => :'String',
|
54
54
|
:'form_data' => :'Array<FormDataItem>',
|
55
|
-
:'prefill_form_data' => :'
|
55
|
+
:'prefill_form_data' => :'PrefillFormData',
|
56
56
|
:'recipient_form_data' => :'Array<RecipientFormData>',
|
57
57
|
:'sent_date_time' => :'String',
|
58
58
|
:'status' => :'String'
|
@@ -27,6 +27,9 @@ module DocuSign_eSign
|
|
27
27
|
#
|
28
28
|
attr_accessor :auto_navigation
|
29
29
|
|
30
|
+
#
|
31
|
+
attr_accessor :auto_responded_reason
|
32
|
+
|
30
33
|
# When set to **true**, specifies that the signer can perform the signing ceremony offline.
|
31
34
|
attr_accessor :can_sign_offline
|
32
35
|
|
@@ -267,6 +270,7 @@ module DocuSign_eSign
|
|
267
270
|
:'add_access_code_to_email' => :'addAccessCodeToEmail',
|
268
271
|
:'allow_system_override_for_locked_recipient' => :'allowSystemOverrideForLockedRecipient',
|
269
272
|
:'auto_navigation' => :'autoNavigation',
|
273
|
+
:'auto_responded_reason' => :'autoRespondedReason',
|
270
274
|
:'can_sign_offline' => :'canSignOffline',
|
271
275
|
:'client_user_id' => :'clientUserId',
|
272
276
|
:'completed_count' => :'completedCount',
|
@@ -365,6 +369,7 @@ module DocuSign_eSign
|
|
365
369
|
:'add_access_code_to_email' => :'String',
|
366
370
|
:'allow_system_override_for_locked_recipient' => :'String',
|
367
371
|
:'auto_navigation' => :'String',
|
372
|
+
:'auto_responded_reason' => :'String',
|
368
373
|
:'can_sign_offline' => :'String',
|
369
374
|
:'client_user_id' => :'String',
|
370
375
|
:'completed_count' => :'String',
|
@@ -483,6 +488,10 @@ module DocuSign_eSign
|
|
483
488
|
self.auto_navigation = attributes[:'autoNavigation']
|
484
489
|
end
|
485
490
|
|
491
|
+
if attributes.has_key?(:'autoRespondedReason')
|
492
|
+
self.auto_responded_reason = attributes[:'autoRespondedReason']
|
493
|
+
end
|
494
|
+
|
486
495
|
if attributes.has_key?(:'canSignOffline')
|
487
496
|
self.can_sign_offline = attributes[:'canSignOffline']
|
488
497
|
end
|
@@ -871,6 +880,7 @@ module DocuSign_eSign
|
|
871
880
|
add_access_code_to_email == o.add_access_code_to_email &&
|
872
881
|
allow_system_override_for_locked_recipient == o.allow_system_override_for_locked_recipient &&
|
873
882
|
auto_navigation == o.auto_navigation &&
|
883
|
+
auto_responded_reason == o.auto_responded_reason &&
|
874
884
|
can_sign_offline == o.can_sign_offline &&
|
875
885
|
client_user_id == o.client_user_id &&
|
876
886
|
completed_count == o.completed_count &&
|
@@ -969,7 +979,7 @@ module DocuSign_eSign
|
|
969
979
|
# Calculates hash code according to all attributes.
|
970
980
|
# @return [Fixnum] Hash code
|
971
981
|
def hash
|
972
|
-
[access_code, access_code_metadata, add_access_code_to_email, allow_system_override_for_locked_recipient, auto_navigation, 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, host_email, host_email_metadata, host_name, host_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, in_person_signing_type, in_person_signing_type_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, notary_host, notary_id, note, note_metadata, offline_attributes, phone_authentication, 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, signer_email, signer_email_metadata, signer_first_name, signer_first_name_metadata, signer_last_name, signer_last_name_metadata, signer_name, signer_name_metadata, 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
|
982
|
+
[access_code, access_code_metadata, add_access_code_to_email, allow_system_override_for_locked_recipient, auto_navigation, auto_responded_reason, 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, host_email, host_email_metadata, host_name, host_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, in_person_signing_type, in_person_signing_type_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, notary_host, notary_id, note, note_metadata, offline_attributes, phone_authentication, 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, signer_email, signer_email_metadata, signer_first_name, signer_first_name_metadata, signer_last_name, signer_last_name_metadata, signer_name, signer_name_metadata, 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
|
973
983
|
end
|
974
984
|
|
975
985
|
# Builds the object from hash
|