docusign_esign 2.0.0 → 2.1.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +22 -0
- data/Gemfile.lock +14 -14
- data/docusign_esign-2.1.0.gem +0 -0
- data/docusign_esign.gemspec +1 -1
- data/lib/docusign_esign.rb +55 -54
- data/lib/docusign_esign/api/bulk_envelopes_api.rb +9 -7
- data/lib/docusign_esign/api/envelopes_api.rb +6 -2
- data/lib/docusign_esign/client/api_client.rb +20 -6
- data/lib/docusign_esign/models/account_role_settings.rb +20 -1
- data/lib/docusign_esign/models/authentication_status.rb +10 -1
- data/lib/docusign_esign/models/envelope.rb +11 -1
- data/lib/docusign_esign/models/envelope_definition.rb +11 -1
- data/lib/docusign_esign/models/envelope_template.rb +11 -1
- data/lib/docusign_esign/models/envelope_template_result.rb +11 -1
- data/lib/docusign_esign/models/event_notification.rb +11 -1
- data/lib/docusign_esign/models/payment_details.rb +41 -1
- data/lib/docusign_esign/models/recipient_identity_verification.rb +188 -0
- data/lib/docusign_esign/models/signer.rb +10 -1
- data/lib/docusign_esign/models/tabs.rb +1 -1
- data/lib/docusign_esign/models/template_tabs.rb +1 -1
- data/lib/docusign_esign/models/witness.rb +10 -1
- data/lib/docusign_esign/version.rb +1 -1
- data/tests/Gemfile.lock +8 -8
- data/{lib/docusign_esign/client → tests/spec}/.DS_Store +0 -0
- data/tests/spec/unit_tests_using_jwt_spec.rb +84 -23
- metadata +32 -32
- data/lib/.DS_Store +0 -0
- data/lib/docusign_esign/.DS_Store +0 -0
- data/tests/docs/private.pem +0 -27
- data/tests/spec/unit_tests_spec.rb +0 -358
@@ -32,6 +32,9 @@ module DocuSign_eSign
|
|
32
32
|
# When set to **true**, this tells the Connect Service to include the void reason, as entered by the person that voided the envelope, in the message.
|
33
33
|
attr_accessor :include_envelope_void_reason
|
34
34
|
|
35
|
+
#
|
36
|
+
attr_accessor :include_hmac
|
37
|
+
|
35
38
|
# When set to **true**, the sender account ID is included as a envelope custom field in the data.
|
36
39
|
attr_accessor :include_sender_account_as_custom_field
|
37
40
|
|
@@ -69,6 +72,7 @@ module DocuSign_eSign
|
|
69
72
|
:'include_document_fields' => :'includeDocumentFields',
|
70
73
|
:'include_documents' => :'includeDocuments',
|
71
74
|
:'include_envelope_void_reason' => :'includeEnvelopeVoidReason',
|
75
|
+
:'include_hmac' => :'includeHMAC',
|
72
76
|
:'include_sender_account_as_custom_field' => :'includeSenderAccountAsCustomField',
|
73
77
|
:'include_time_zone' => :'includeTimeZone',
|
74
78
|
:'logging_enabled' => :'loggingEnabled',
|
@@ -90,6 +94,7 @@ module DocuSign_eSign
|
|
90
94
|
:'include_document_fields' => :'String',
|
91
95
|
:'include_documents' => :'String',
|
92
96
|
:'include_envelope_void_reason' => :'String',
|
97
|
+
:'include_hmac' => :'String',
|
93
98
|
:'include_sender_account_as_custom_field' => :'String',
|
94
99
|
:'include_time_zone' => :'String',
|
95
100
|
:'logging_enabled' => :'String',
|
@@ -136,6 +141,10 @@ module DocuSign_eSign
|
|
136
141
|
self.include_envelope_void_reason = attributes[:'includeEnvelopeVoidReason']
|
137
142
|
end
|
138
143
|
|
144
|
+
if attributes.has_key?(:'includeHMAC')
|
145
|
+
self.include_hmac = attributes[:'includeHMAC']
|
146
|
+
end
|
147
|
+
|
139
148
|
if attributes.has_key?(:'includeSenderAccountAsCustomField')
|
140
149
|
self.include_sender_account_as_custom_field = attributes[:'includeSenderAccountAsCustomField']
|
141
150
|
end
|
@@ -200,6 +209,7 @@ module DocuSign_eSign
|
|
200
209
|
include_document_fields == o.include_document_fields &&
|
201
210
|
include_documents == o.include_documents &&
|
202
211
|
include_envelope_void_reason == o.include_envelope_void_reason &&
|
212
|
+
include_hmac == o.include_hmac &&
|
203
213
|
include_sender_account_as_custom_field == o.include_sender_account_as_custom_field &&
|
204
214
|
include_time_zone == o.include_time_zone &&
|
205
215
|
logging_enabled == o.logging_enabled &&
|
@@ -220,7 +230,7 @@ module DocuSign_eSign
|
|
220
230
|
# Calculates hash code according to all attributes.
|
221
231
|
# @return [Fixnum] Hash code
|
222
232
|
def hash
|
223
|
-
[envelope_events, include_certificate_of_completion, include_certificate_with_soap, include_document_fields, include_documents, include_envelope_void_reason, include_sender_account_as_custom_field, include_time_zone, logging_enabled, recipient_events, require_acknowledgment, sign_message_with_x509_cert, soap_name_space, url, use_soap_interface].hash
|
233
|
+
[envelope_events, include_certificate_of_completion, include_certificate_with_soap, include_document_fields, include_documents, include_envelope_void_reason, include_hmac, include_sender_account_as_custom_field, include_time_zone, logging_enabled, recipient_events, require_acknowledgment, sign_message_with_x509_cert, soap_name_space, url, use_soap_interface].hash
|
224
234
|
end
|
225
235
|
|
226
236
|
# Builds the object from hash
|
@@ -23,6 +23,15 @@ module DocuSign_eSign
|
|
23
23
|
#
|
24
24
|
attr_accessor :currency_code
|
25
25
|
|
26
|
+
#
|
27
|
+
attr_accessor :customer_id
|
28
|
+
|
29
|
+
#
|
30
|
+
attr_accessor :custom_metadata
|
31
|
+
|
32
|
+
#
|
33
|
+
attr_accessor :custom_metadata_required
|
34
|
+
|
26
35
|
#
|
27
36
|
attr_accessor :gateway_account_id
|
28
37
|
|
@@ -38,6 +47,9 @@ module DocuSign_eSign
|
|
38
47
|
#
|
39
48
|
attr_accessor :payment_option
|
40
49
|
|
50
|
+
#
|
51
|
+
attr_accessor :payment_source_id
|
52
|
+
|
41
53
|
# 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.
|
42
54
|
attr_accessor :status
|
43
55
|
|
@@ -50,11 +62,15 @@ module DocuSign_eSign
|
|
50
62
|
:'allowed_payment_methods' => :'allowedPaymentMethods',
|
51
63
|
:'charge_id' => :'chargeId',
|
52
64
|
:'currency_code' => :'currencyCode',
|
65
|
+
:'customer_id' => :'customerId',
|
66
|
+
:'custom_metadata' => :'customMetadata',
|
67
|
+
:'custom_metadata_required' => :'customMetadataRequired',
|
53
68
|
:'gateway_account_id' => :'gatewayAccountId',
|
54
69
|
:'gateway_display_name' => :'gatewayDisplayName',
|
55
70
|
:'gateway_name' => :'gatewayName',
|
56
71
|
:'line_items' => :'lineItems',
|
57
72
|
:'payment_option' => :'paymentOption',
|
73
|
+
:'payment_source_id' => :'paymentSourceId',
|
58
74
|
:'status' => :'status',
|
59
75
|
:'total' => :'total'
|
60
76
|
}
|
@@ -66,11 +82,15 @@ module DocuSign_eSign
|
|
66
82
|
:'allowed_payment_methods' => :'Array<String>',
|
67
83
|
:'charge_id' => :'String',
|
68
84
|
:'currency_code' => :'String',
|
85
|
+
:'customer_id' => :'String',
|
86
|
+
:'custom_metadata' => :'String',
|
87
|
+
:'custom_metadata_required' => :'BOOLEAN',
|
69
88
|
:'gateway_account_id' => :'String',
|
70
89
|
:'gateway_display_name' => :'String',
|
71
90
|
:'gateway_name' => :'String',
|
72
91
|
:'line_items' => :'Array<PaymentLineItem>',
|
73
92
|
:'payment_option' => :'String',
|
93
|
+
:'payment_source_id' => :'String',
|
74
94
|
:'status' => :'String',
|
75
95
|
:'total' => :'Money'
|
76
96
|
}
|
@@ -98,6 +118,18 @@ module DocuSign_eSign
|
|
98
118
|
self.currency_code = attributes[:'currencyCode']
|
99
119
|
end
|
100
120
|
|
121
|
+
if attributes.has_key?(:'customerId')
|
122
|
+
self.customer_id = attributes[:'customerId']
|
123
|
+
end
|
124
|
+
|
125
|
+
if attributes.has_key?(:'customMetadata')
|
126
|
+
self.custom_metadata = attributes[:'customMetadata']
|
127
|
+
end
|
128
|
+
|
129
|
+
if attributes.has_key?(:'customMetadataRequired')
|
130
|
+
self.custom_metadata_required = attributes[:'customMetadataRequired']
|
131
|
+
end
|
132
|
+
|
101
133
|
if attributes.has_key?(:'gatewayAccountId')
|
102
134
|
self.gateway_account_id = attributes[:'gatewayAccountId']
|
103
135
|
end
|
@@ -120,6 +152,10 @@ module DocuSign_eSign
|
|
120
152
|
self.payment_option = attributes[:'paymentOption']
|
121
153
|
end
|
122
154
|
|
155
|
+
if attributes.has_key?(:'paymentSourceId')
|
156
|
+
self.payment_source_id = attributes[:'paymentSourceId']
|
157
|
+
end
|
158
|
+
|
123
159
|
if attributes.has_key?(:'status')
|
124
160
|
self.status = attributes[:'status']
|
125
161
|
end
|
@@ -151,11 +187,15 @@ module DocuSign_eSign
|
|
151
187
|
allowed_payment_methods == o.allowed_payment_methods &&
|
152
188
|
charge_id == o.charge_id &&
|
153
189
|
currency_code == o.currency_code &&
|
190
|
+
customer_id == o.customer_id &&
|
191
|
+
custom_metadata == o.custom_metadata &&
|
192
|
+
custom_metadata_required == o.custom_metadata_required &&
|
154
193
|
gateway_account_id == o.gateway_account_id &&
|
155
194
|
gateway_display_name == o.gateway_display_name &&
|
156
195
|
gateway_name == o.gateway_name &&
|
157
196
|
line_items == o.line_items &&
|
158
197
|
payment_option == o.payment_option &&
|
198
|
+
payment_source_id == o.payment_source_id &&
|
159
199
|
status == o.status &&
|
160
200
|
total == o.total
|
161
201
|
end
|
@@ -169,7 +209,7 @@ module DocuSign_eSign
|
|
169
209
|
# Calculates hash code according to all attributes.
|
170
210
|
# @return [Fixnum] Hash code
|
171
211
|
def hash
|
172
|
-
[allowed_payment_methods, charge_id, currency_code, gateway_account_id, gateway_display_name, gateway_name, line_items, payment_option, status, total].hash
|
212
|
+
[allowed_payment_methods, charge_id, currency_code, customer_id, custom_metadata, custom_metadata_required, gateway_account_id, gateway_display_name, gateway_name, line_items, payment_option, payment_source_id, status, total].hash
|
173
213
|
end
|
174
214
|
|
175
215
|
# Builds the object from hash
|
@@ -0,0 +1,188 @@
|
|
1
|
+
=begin
|
2
|
+
#DocuSign REST API
|
3
|
+
|
4
|
+
#The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
|
5
|
+
|
6
|
+
OpenAPI spec version: v2
|
7
|
+
Contact: devcenter@docusign.com
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
=end
|
11
|
+
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
module DocuSign_eSign
|
15
|
+
|
16
|
+
class RecipientIdentityVerification
|
17
|
+
#
|
18
|
+
attr_accessor :workflow_id
|
19
|
+
|
20
|
+
|
21
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
22
|
+
def self.attribute_map
|
23
|
+
{
|
24
|
+
:'workflow_id' => :'workflowId'
|
25
|
+
}
|
26
|
+
end
|
27
|
+
|
28
|
+
# Attribute type mapping.
|
29
|
+
def self.swagger_types
|
30
|
+
{
|
31
|
+
:'workflow_id' => :'String'
|
32
|
+
}
|
33
|
+
end
|
34
|
+
|
35
|
+
# Initializes the object
|
36
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
37
|
+
def initialize(attributes = {})
|
38
|
+
return unless attributes.is_a?(Hash)
|
39
|
+
|
40
|
+
# convert string to symbol for hash key
|
41
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
42
|
+
|
43
|
+
if attributes.has_key?(:'workflowId')
|
44
|
+
self.workflow_id = attributes[:'workflowId']
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
50
|
+
# @return Array for valid properies with the reasons
|
51
|
+
def list_invalid_properties
|
52
|
+
invalid_properties = Array.new
|
53
|
+
return invalid_properties
|
54
|
+
end
|
55
|
+
|
56
|
+
# Check to see if the all the properties in the model are valid
|
57
|
+
# @return true if the model is valid
|
58
|
+
def valid?
|
59
|
+
return true
|
60
|
+
end
|
61
|
+
|
62
|
+
# Checks equality by comparing each attribute.
|
63
|
+
# @param [Object] Object to be compared
|
64
|
+
def ==(o)
|
65
|
+
return true if self.equal?(o)
|
66
|
+
self.class == o.class &&
|
67
|
+
workflow_id == o.workflow_id
|
68
|
+
end
|
69
|
+
|
70
|
+
# @see the `==` method
|
71
|
+
# @param [Object] Object to be compared
|
72
|
+
def eql?(o)
|
73
|
+
self == o
|
74
|
+
end
|
75
|
+
|
76
|
+
# Calculates hash code according to all attributes.
|
77
|
+
# @return [Fixnum] Hash code
|
78
|
+
def hash
|
79
|
+
[workflow_id].hash
|
80
|
+
end
|
81
|
+
|
82
|
+
# Builds the object from hash
|
83
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
84
|
+
# @return [Object] Returns the model itself
|
85
|
+
def build_from_hash(attributes)
|
86
|
+
return nil unless attributes.is_a?(Hash)
|
87
|
+
self.class.swagger_types.each_pair do |key, type|
|
88
|
+
if type =~ /\AArray<(.*)>/i
|
89
|
+
# check to ensure the input is an array given that the the attribute
|
90
|
+
# is documented as an array but the input is not
|
91
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
92
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
93
|
+
end
|
94
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
95
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
96
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
97
|
+
end
|
98
|
+
|
99
|
+
self
|
100
|
+
end
|
101
|
+
|
102
|
+
# Deserializes the data based on type
|
103
|
+
# @param string type Data type
|
104
|
+
# @param string value Value to be deserialized
|
105
|
+
# @return [Object] Deserialized data
|
106
|
+
def _deserialize(type, value)
|
107
|
+
case type.to_sym
|
108
|
+
when :DateTime
|
109
|
+
DateTime.parse(value)
|
110
|
+
when :Date
|
111
|
+
Date.parse(value)
|
112
|
+
when :String
|
113
|
+
value.to_s
|
114
|
+
when :Integer
|
115
|
+
value.to_i
|
116
|
+
when :Float
|
117
|
+
value.to_f
|
118
|
+
when :BOOLEAN
|
119
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
120
|
+
true
|
121
|
+
else
|
122
|
+
false
|
123
|
+
end
|
124
|
+
when :Object
|
125
|
+
# generic object (usually a Hash), return directly
|
126
|
+
value
|
127
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
128
|
+
inner_type = Regexp.last_match[:inner_type]
|
129
|
+
value.map { |v| _deserialize(inner_type, v) }
|
130
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
131
|
+
k_type = Regexp.last_match[:k_type]
|
132
|
+
v_type = Regexp.last_match[:v_type]
|
133
|
+
{}.tap do |hash|
|
134
|
+
value.each do |k, v|
|
135
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
136
|
+
end
|
137
|
+
end
|
138
|
+
else # model
|
139
|
+
temp_model = DocuSign_eSign.const_get(type).new
|
140
|
+
temp_model.build_from_hash(value)
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
# Returns the string representation of the object
|
145
|
+
# @return [String] String presentation of the object
|
146
|
+
def to_s
|
147
|
+
to_hash.to_s
|
148
|
+
end
|
149
|
+
|
150
|
+
# to_body is an alias to to_hash (backward compatibility)
|
151
|
+
# @return [Hash] Returns the object in the form of hash
|
152
|
+
def to_body
|
153
|
+
to_hash
|
154
|
+
end
|
155
|
+
|
156
|
+
# Returns the object in the form of hash
|
157
|
+
# @return [Hash] Returns the object in the form of hash
|
158
|
+
def to_hash
|
159
|
+
hash = {}
|
160
|
+
self.class.attribute_map.each_pair do |attr, param|
|
161
|
+
value = self.send(attr)
|
162
|
+
next if value.nil?
|
163
|
+
hash[param] = _to_hash(value)
|
164
|
+
end
|
165
|
+
hash
|
166
|
+
end
|
167
|
+
|
168
|
+
# Outputs non-array value in the form of hash
|
169
|
+
# For object, use to_hash. Otherwise, just return the value
|
170
|
+
# @param [Object] value Any valid value
|
171
|
+
# @return [Hash] Returns the value in the form of hash
|
172
|
+
def _to_hash(value)
|
173
|
+
if value.is_a?(Array)
|
174
|
+
value.compact.map{ |v| _to_hash(v) }
|
175
|
+
elsif value.is_a?(Hash)
|
176
|
+
{}.tap do |hash|
|
177
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
178
|
+
end
|
179
|
+
elsif value.respond_to? :to_hash
|
180
|
+
value.to_hash
|
181
|
+
else
|
182
|
+
value
|
183
|
+
end
|
184
|
+
end
|
185
|
+
|
186
|
+
end
|
187
|
+
|
188
|
+
end
|
@@ -92,6 +92,8 @@ module DocuSign_eSign
|
|
92
92
|
|
93
93
|
attr_accessor :id_check_information_input
|
94
94
|
|
95
|
+
attr_accessor :identity_verification
|
96
|
+
|
95
97
|
# When set to **true** and the envelope recipient creates a DocuSign account after signing, the Manage Account Email Notification settings are used as the default settings for the recipient's account.
|
96
98
|
attr_accessor :inherit_email_notification_configuration
|
97
99
|
|
@@ -218,6 +220,7 @@ module DocuSign_eSign
|
|
218
220
|
:'full_name' => :'fullName',
|
219
221
|
:'id_check_configuration_name' => :'idCheckConfigurationName',
|
220
222
|
:'id_check_information_input' => :'idCheckInformationInput',
|
223
|
+
:'identity_verification' => :'identityVerification',
|
221
224
|
:'inherit_email_notification_configuration' => :'inheritEmailNotificationConfiguration',
|
222
225
|
:'is_bulk_recipient' => :'isBulkRecipient',
|
223
226
|
:'last_name' => :'lastName',
|
@@ -285,6 +288,7 @@ module DocuSign_eSign
|
|
285
288
|
:'full_name' => :'String',
|
286
289
|
:'id_check_configuration_name' => :'String',
|
287
290
|
:'id_check_information_input' => :'IdCheckInformationInput',
|
291
|
+
:'identity_verification' => :'RecipientIdentityVerification',
|
288
292
|
:'inherit_email_notification_configuration' => :'String',
|
289
293
|
:'is_bulk_recipient' => :'String',
|
290
294
|
:'last_name' => :'String',
|
@@ -444,6 +448,10 @@ module DocuSign_eSign
|
|
444
448
|
self.id_check_information_input = attributes[:'idCheckInformationInput']
|
445
449
|
end
|
446
450
|
|
451
|
+
if attributes.has_key?(:'identityVerification')
|
452
|
+
self.identity_verification = attributes[:'identityVerification']
|
453
|
+
end
|
454
|
+
|
447
455
|
if attributes.has_key?(:'inheritEmailNotificationConfiguration')
|
448
456
|
self.inherit_email_notification_configuration = attributes[:'inheritEmailNotificationConfiguration']
|
449
457
|
end
|
@@ -635,6 +643,7 @@ module DocuSign_eSign
|
|
635
643
|
full_name == o.full_name &&
|
636
644
|
id_check_configuration_name == o.id_check_configuration_name &&
|
637
645
|
id_check_information_input == o.id_check_information_input &&
|
646
|
+
identity_verification == o.identity_verification &&
|
638
647
|
inherit_email_notification_configuration == o.inherit_email_notification_configuration &&
|
639
648
|
is_bulk_recipient == o.is_bulk_recipient &&
|
640
649
|
last_name == o.last_name &&
|
@@ -680,7 +689,7 @@ module DocuSign_eSign
|
|
680
689
|
# Calculates hash code according to all attributes.
|
681
690
|
# @return [Fixnum] Hash code
|
682
691
|
def hash
|
683
|
-
[access_code, add_access_code_to_email, agent_can_edit_email, agent_can_edit_name, auto_navigation, bulk_recipients_uri, can_sign_offline, client_user_id, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, delivered_date_time, delivery_method, document_visibility, email, email_notification, email_recipient_post_signing_url, embedded_recipient_start_url, error_details, excluded_documents, fax_number, first_name, full_name, id_check_configuration_name, id_check_information_input, inherit_email_notification_configuration, is_bulk_recipient, last_name, name, note, offline_attributes, phone_authentication, recipient_attachments, recipient_authentication_status, recipient_id, recipient_id_guid, recipient_signature_providers, recipient_supplies_tabs, require_id_lookup, require_signer_certificate, require_sign_on_paper, role_name, routing_order, saml_authentication, sent_date_time, signature_info, signed_date_time, sign_in_each_location, signing_group_id, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, tabs, template_locked, template_required, total_tab_count, user_id].hash
|
692
|
+
[access_code, add_access_code_to_email, agent_can_edit_email, agent_can_edit_name, auto_navigation, bulk_recipients_uri, can_sign_offline, client_user_id, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, delivered_date_time, delivery_method, document_visibility, email, email_notification, email_recipient_post_signing_url, embedded_recipient_start_url, error_details, excluded_documents, fax_number, first_name, full_name, id_check_configuration_name, id_check_information_input, identity_verification, inherit_email_notification_configuration, is_bulk_recipient, last_name, name, note, offline_attributes, phone_authentication, recipient_attachments, recipient_authentication_status, recipient_id, recipient_id_guid, recipient_signature_providers, recipient_supplies_tabs, require_id_lookup, require_signer_certificate, require_sign_on_paper, role_name, routing_order, saml_authentication, sent_date_time, signature_info, signed_date_time, sign_in_each_location, signing_group_id, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, tabs, template_locked, template_required, total_tab_count, user_id].hash
|
684
693
|
end
|
685
694
|
|
686
695
|
# Builds the object from hash
|
@@ -136,7 +136,7 @@ module DocuSign_eSign
|
|
136
136
|
:'checkbox_tabs' => :'Array<Checkbox>',
|
137
137
|
:'company_tabs' => :'Array<Company>',
|
138
138
|
:'date_signed_tabs' => :'Array<DateSigned>',
|
139
|
-
:'date_tabs' => :'Array<Date>',
|
139
|
+
:'date_tabs' => :'Array<DocuSign_eSign::Date>',
|
140
140
|
:'decline_tabs' => :'Array<Decline>',
|
141
141
|
:'email_address_tabs' => :'Array<EmailAddress>',
|
142
142
|
:'email_tabs' => :'Array<Email>',
|
@@ -136,7 +136,7 @@ module DocuSign_eSign
|
|
136
136
|
:'checkbox_tabs' => :'Array<Checkbox>',
|
137
137
|
:'company_tabs' => :'Array<Company>',
|
138
138
|
:'date_signed_tabs' => :'Array<DateSigned>',
|
139
|
-
:'date_tabs' => :'Array<Date>',
|
139
|
+
:'date_tabs' => :'Array<DocuSign_eSign::Date>',
|
140
140
|
:'decline_tabs' => :'Array<Decline>',
|
141
141
|
:'email_address_tabs' => :'Array<EmailAddress>',
|
142
142
|
:'email_tabs' => :'Array<Email>',
|
@@ -92,6 +92,8 @@ module DocuSign_eSign
|
|
92
92
|
|
93
93
|
attr_accessor :id_check_information_input
|
94
94
|
|
95
|
+
attr_accessor :identity_verification
|
96
|
+
|
95
97
|
# When set to **true** and the envelope recipient creates a DocuSign account after signing, the Manage Account Email Notification settings are used as the default settings for the recipient's account.
|
96
98
|
attr_accessor :inherit_email_notification_configuration
|
97
99
|
|
@@ -224,6 +226,7 @@ module DocuSign_eSign
|
|
224
226
|
:'full_name' => :'fullName',
|
225
227
|
:'id_check_configuration_name' => :'idCheckConfigurationName',
|
226
228
|
:'id_check_information_input' => :'idCheckInformationInput',
|
229
|
+
:'identity_verification' => :'identityVerification',
|
227
230
|
:'inherit_email_notification_configuration' => :'inheritEmailNotificationConfiguration',
|
228
231
|
:'is_bulk_recipient' => :'isBulkRecipient',
|
229
232
|
:'last_name' => :'lastName',
|
@@ -293,6 +296,7 @@ module DocuSign_eSign
|
|
293
296
|
:'full_name' => :'String',
|
294
297
|
:'id_check_configuration_name' => :'String',
|
295
298
|
:'id_check_information_input' => :'IdCheckInformationInput',
|
299
|
+
:'identity_verification' => :'RecipientIdentityVerification',
|
296
300
|
:'inherit_email_notification_configuration' => :'String',
|
297
301
|
:'is_bulk_recipient' => :'String',
|
298
302
|
:'last_name' => :'String',
|
@@ -454,6 +458,10 @@ module DocuSign_eSign
|
|
454
458
|
self.id_check_information_input = attributes[:'idCheckInformationInput']
|
455
459
|
end
|
456
460
|
|
461
|
+
if attributes.has_key?(:'identityVerification')
|
462
|
+
self.identity_verification = attributes[:'identityVerification']
|
463
|
+
end
|
464
|
+
|
457
465
|
if attributes.has_key?(:'inheritEmailNotificationConfiguration')
|
458
466
|
self.inherit_email_notification_configuration = attributes[:'inheritEmailNotificationConfiguration']
|
459
467
|
end
|
@@ -653,6 +661,7 @@ module DocuSign_eSign
|
|
653
661
|
full_name == o.full_name &&
|
654
662
|
id_check_configuration_name == o.id_check_configuration_name &&
|
655
663
|
id_check_information_input == o.id_check_information_input &&
|
664
|
+
identity_verification == o.identity_verification &&
|
656
665
|
inherit_email_notification_configuration == o.inherit_email_notification_configuration &&
|
657
666
|
is_bulk_recipient == o.is_bulk_recipient &&
|
658
667
|
last_name == o.last_name &&
|
@@ -700,7 +709,7 @@ module DocuSign_eSign
|
|
700
709
|
# Calculates hash code according to all attributes.
|
701
710
|
# @return [Fixnum] Hash code
|
702
711
|
def hash
|
703
|
-
[access_code, add_access_code_to_email, agent_can_edit_email, agent_can_edit_name, auto_navigation, bulk_recipients_uri, can_sign_offline, client_user_id, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, delivered_date_time, delivery_method, document_visibility, email, email_notification, email_recipient_post_signing_url, embedded_recipient_start_url, error_details, excluded_documents, fax_number, first_name, full_name, id_check_configuration_name, id_check_information_input, inherit_email_notification_configuration, is_bulk_recipient, last_name, name, note, offline_attributes, phone_authentication, recipient_attachments, recipient_authentication_status, recipient_id, recipient_id_guid, recipient_signature_providers, recipient_supplies_tabs, require_id_lookup, require_signer_certificate, require_sign_on_paper, role_name, routing_order, saml_authentication, sent_date_time, signature_info, signed_date_time, sign_in_each_location, signing_group_id, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, tabs, template_locked, template_required, total_tab_count, user_id, witness_for, witness_for_guid].hash
|
712
|
+
[access_code, add_access_code_to_email, agent_can_edit_email, agent_can_edit_name, auto_navigation, bulk_recipients_uri, can_sign_offline, client_user_id, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, delivered_date_time, delivery_method, document_visibility, email, email_notification, email_recipient_post_signing_url, embedded_recipient_start_url, error_details, excluded_documents, fax_number, first_name, full_name, id_check_configuration_name, id_check_information_input, identity_verification, inherit_email_notification_configuration, is_bulk_recipient, last_name, name, note, offline_attributes, phone_authentication, recipient_attachments, recipient_authentication_status, recipient_id, recipient_id_guid, recipient_signature_providers, recipient_supplies_tabs, require_id_lookup, require_signer_certificate, require_sign_on_paper, role_name, routing_order, saml_authentication, sent_date_time, signature_info, signed_date_time, sign_in_each_location, signing_group_id, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, tabs, template_locked, template_required, total_tab_count, user_id, witness_for, witness_for_guid].hash
|
704
713
|
end
|
705
714
|
|
706
715
|
# Builds the object from hash
|