docusign_esign 3.7.0.rc1 → 3.8.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +8 -9
- data/docusign_esign-2.8.0.rc1.gem +0 -0
- data/lib/docusign_esign.rb +29 -1
- data/lib/docusign_esign/api/accounts_api.rb +65 -8
- data/lib/docusign_esign/api/bulk_envelopes_api.rb +22 -298
- data/lib/docusign_esign/api/connect_api.rb +196 -0
- data/lib/docusign_esign/api/envelopes_api.rb +1502 -78
- data/lib/docusign_esign/api/groups_api.rb +9 -9
- data/lib/docusign_esign/api/trust_service_providers_api.rb +232 -0
- data/lib/docusign_esign/api/users_api.rb +52 -0
- data/lib/docusign_esign/models/account_billing_plan.rb +11 -1
- data/lib/docusign_esign/models/account_information.rb +34 -4
- data/lib/docusign_esign/models/account_settings_information.rb +134 -1
- data/lib/docusign_esign/models/account_ui_settings.rb +20 -1
- data/lib/docusign_esign/models/bulk_send_batch_request.rb +184 -0
- data/lib/docusign_esign/models/bulk_send_batch_status.rb +21 -1
- data/lib/docusign_esign/models/complete_sign_hash_response.rb +7 -11
- data/lib/docusign_esign/models/complete_sign_request.rb +7 -11
- data/lib/docusign_esign/models/credential.rb +7 -11
- data/lib/docusign_esign/models/display_appliance_account.rb +224 -0
- data/lib/docusign_esign/models/display_appliance_info.rb +174 -0
- data/lib/docusign_esign/models/display_appliance_pdf.rb +174 -0
- data/lib/docusign_esign/models/display_appliance_signer_attachment.rb +174 -0
- data/lib/docusign_esign/models/document.rb +11 -1
- data/lib/docusign_esign/models/document_security_store.rb +7 -11
- data/lib/docusign_esign/models/document_update_info.rb +7 -11
- data/lib/docusign_esign/models/envelope_form_data.rb +13 -1
- data/lib/docusign_esign/models/external_claim.rb +7 -11
- data/lib/docusign_esign/models/group_brands.rb +207 -0
- data/lib/docusign_esign/models/payment_details.rb +10 -1
- data/lib/docusign_esign/models/payment_signer_values.rb +184 -0
- data/lib/docusign_esign/models/prefill_tabs.rb +222 -0
- data/lib/docusign_esign/models/revision.rb +7 -11
- data/lib/docusign_esign/models/seal.rb +8 -12
- data/lib/docusign_esign/models/sender.rb +7 -11
- data/lib/docusign_esign/models/sign_hash_document.rb +7 -11
- data/lib/docusign_esign/models/sign_hash_session_info_response.rb +7 -11
- data/lib/docusign_esign/models/sign_session_info_request.rb +7 -11
- data/lib/docusign_esign/models/signature_data_info.rb +7 -11
- data/lib/docusign_esign/models/signature_properties.rb +7 -11
- data/lib/docusign_esign/models/tab_account_settings.rb +20 -1
- data/lib/docusign_esign/models/tabs.rb +10 -1
- data/lib/docusign_esign/models/template_tabs.rb +10 -1
- data/lib/docusign_esign/models/time_stamp_field.rb +7 -11
- data/lib/docusign_esign/models/tsp_health_check_request.rb +7 -11
- data/lib/docusign_esign/models/tsp_health_check_status_description.rb +7 -11
- data/lib/docusign_esign/models/update_transaction_request.rb +7 -11
- data/lib/docusign_esign/models/update_transaction_response.rb +7 -11
- data/lib/docusign_esign/models/user.rb +7 -11
- data/lib/docusign_esign/models/user_info_response.rb +7 -11
- data/lib/docusign_esign/models/user_information.rb +11 -1
- data/lib/docusign_esign/version.rb +1 -1
- data/tests/Gemfile.lock +9 -5
- metadata +11 -2
@@ -12,7 +12,6 @@ Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
require 'date'
|
13
13
|
|
14
14
|
module DocuSign_eSign
|
15
|
-
|
16
15
|
class TspHealthCheckStatusDescription
|
17
16
|
#
|
18
17
|
attr_accessor :description
|
@@ -32,7 +31,6 @@ module DocuSign_eSign
|
|
32
31
|
#
|
33
32
|
attr_accessor :type
|
34
33
|
|
35
|
-
|
36
34
|
# Attribute mapping from ruby-style variable name to JSON key.
|
37
35
|
def self.attribute_map
|
38
36
|
{
|
@@ -63,7 +61,7 @@ module DocuSign_eSign
|
|
63
61
|
return unless attributes.is_a?(Hash)
|
64
62
|
|
65
63
|
# convert string to symbol for hash key
|
66
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
64
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
67
65
|
|
68
66
|
if attributes.has_key?(:'description')
|
69
67
|
self.description = attributes[:'description']
|
@@ -88,20 +86,19 @@ module DocuSign_eSign
|
|
88
86
|
if attributes.has_key?(:'type')
|
89
87
|
self.type = attributes[:'type']
|
90
88
|
end
|
91
|
-
|
92
89
|
end
|
93
90
|
|
94
91
|
# Show invalid properties with the reasons. Usually used together with valid?
|
95
|
-
# @return Array for valid
|
92
|
+
# @return Array for valid properties with the reasons
|
96
93
|
def list_invalid_properties
|
97
94
|
invalid_properties = Array.new
|
98
|
-
|
95
|
+
invalid_properties
|
99
96
|
end
|
100
97
|
|
101
98
|
# Check to see if the all the properties in the model are valid
|
102
99
|
# @return true if the model is valid
|
103
100
|
def valid?
|
104
|
-
|
101
|
+
true
|
105
102
|
end
|
106
103
|
|
107
104
|
# Checks equality by comparing each attribute.
|
@@ -136,10 +133,10 @@ module DocuSign_eSign
|
|
136
133
|
return nil unless attributes.is_a?(Hash)
|
137
134
|
self.class.swagger_types.each_pair do |key, type|
|
138
135
|
if type =~ /\AArray<(.*)>/i
|
139
|
-
# check to ensure the input is an array given that the
|
136
|
+
# check to ensure the input is an array given that the attribute
|
140
137
|
# is documented as an array but the input is not
|
141
138
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
142
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
139
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
143
140
|
end
|
144
141
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
145
142
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
@@ -221,7 +218,7 @@ module DocuSign_eSign
|
|
221
218
|
# @return [Hash] Returns the value in the form of hash
|
222
219
|
def _to_hash(value)
|
223
220
|
if value.is_a?(Array)
|
224
|
-
value.compact.map{ |v| _to_hash(v) }
|
221
|
+
value.compact.map { |v| _to_hash(v) }
|
225
222
|
elsif value.is_a?(Hash)
|
226
223
|
{}.tap do |hash|
|
227
224
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
@@ -234,5 +231,4 @@ module DocuSign_eSign
|
|
234
231
|
end
|
235
232
|
|
236
233
|
end
|
237
|
-
|
238
234
|
end
|
@@ -12,7 +12,6 @@ Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
require 'date'
|
13
13
|
|
14
14
|
module DocuSign_eSign
|
15
|
-
|
16
15
|
class UpdateTransactionRequest
|
17
16
|
#
|
18
17
|
attr_accessor :code
|
@@ -23,7 +22,6 @@ module DocuSign_eSign
|
|
23
22
|
# The state or province associated with the address.
|
24
23
|
attr_accessor :state
|
25
24
|
|
26
|
-
|
27
25
|
# Attribute mapping from ruby-style variable name to JSON key.
|
28
26
|
def self.attribute_map
|
29
27
|
{
|
@@ -48,7 +46,7 @@ module DocuSign_eSign
|
|
48
46
|
return unless attributes.is_a?(Hash)
|
49
47
|
|
50
48
|
# convert string to symbol for hash key
|
51
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
49
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
52
50
|
|
53
51
|
if attributes.has_key?(:'code')
|
54
52
|
self.code = attributes[:'code']
|
@@ -61,20 +59,19 @@ module DocuSign_eSign
|
|
61
59
|
if attributes.has_key?(:'state')
|
62
60
|
self.state = attributes[:'state']
|
63
61
|
end
|
64
|
-
|
65
62
|
end
|
66
63
|
|
67
64
|
# Show invalid properties with the reasons. Usually used together with valid?
|
68
|
-
# @return Array for valid
|
65
|
+
# @return Array for valid properties with the reasons
|
69
66
|
def list_invalid_properties
|
70
67
|
invalid_properties = Array.new
|
71
|
-
|
68
|
+
invalid_properties
|
72
69
|
end
|
73
70
|
|
74
71
|
# Check to see if the all the properties in the model are valid
|
75
72
|
# @return true if the model is valid
|
76
73
|
def valid?
|
77
|
-
|
74
|
+
true
|
78
75
|
end
|
79
76
|
|
80
77
|
# Checks equality by comparing each attribute.
|
@@ -106,10 +103,10 @@ module DocuSign_eSign
|
|
106
103
|
return nil unless attributes.is_a?(Hash)
|
107
104
|
self.class.swagger_types.each_pair do |key, type|
|
108
105
|
if type =~ /\AArray<(.*)>/i
|
109
|
-
# check to ensure the input is an array given that the
|
106
|
+
# check to ensure the input is an array given that the attribute
|
110
107
|
# is documented as an array but the input is not
|
111
108
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
112
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
109
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
113
110
|
end
|
114
111
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
115
112
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
@@ -191,7 +188,7 @@ module DocuSign_eSign
|
|
191
188
|
# @return [Hash] Returns the value in the form of hash
|
192
189
|
def _to_hash(value)
|
193
190
|
if value.is_a?(Array)
|
194
|
-
value.compact.map{ |v| _to_hash(v) }
|
191
|
+
value.compact.map { |v| _to_hash(v) }
|
195
192
|
elsif value.is_a?(Hash)
|
196
193
|
{}.tap do |hash|
|
197
194
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
@@ -204,5 +201,4 @@ module DocuSign_eSign
|
|
204
201
|
end
|
205
202
|
|
206
203
|
end
|
207
|
-
|
208
204
|
end
|
@@ -12,12 +12,10 @@ Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
require 'date'
|
13
13
|
|
14
14
|
module DocuSign_eSign
|
15
|
-
|
16
15
|
class UpdateTransactionResponse
|
17
16
|
#
|
18
17
|
attr_accessor :redirection_url
|
19
18
|
|
20
|
-
|
21
19
|
# Attribute mapping from ruby-style variable name to JSON key.
|
22
20
|
def self.attribute_map
|
23
21
|
{
|
@@ -38,25 +36,24 @@ module DocuSign_eSign
|
|
38
36
|
return unless attributes.is_a?(Hash)
|
39
37
|
|
40
38
|
# convert string to symbol for hash key
|
41
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
39
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
42
40
|
|
43
41
|
if attributes.has_key?(:'redirectionUrl')
|
44
42
|
self.redirection_url = attributes[:'redirectionUrl']
|
45
43
|
end
|
46
|
-
|
47
44
|
end
|
48
45
|
|
49
46
|
# Show invalid properties with the reasons. Usually used together with valid?
|
50
|
-
# @return Array for valid
|
47
|
+
# @return Array for valid properties with the reasons
|
51
48
|
def list_invalid_properties
|
52
49
|
invalid_properties = Array.new
|
53
|
-
|
50
|
+
invalid_properties
|
54
51
|
end
|
55
52
|
|
56
53
|
# Check to see if the all the properties in the model are valid
|
57
54
|
# @return true if the model is valid
|
58
55
|
def valid?
|
59
|
-
|
56
|
+
true
|
60
57
|
end
|
61
58
|
|
62
59
|
# Checks equality by comparing each attribute.
|
@@ -86,10 +83,10 @@ module DocuSign_eSign
|
|
86
83
|
return nil unless attributes.is_a?(Hash)
|
87
84
|
self.class.swagger_types.each_pair do |key, type|
|
88
85
|
if type =~ /\AArray<(.*)>/i
|
89
|
-
# check to ensure the input is an array given that the
|
86
|
+
# check to ensure the input is an array given that the attribute
|
90
87
|
# is documented as an array but the input is not
|
91
88
|
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) }
|
89
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
93
90
|
end
|
94
91
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
95
92
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
@@ -171,7 +168,7 @@ module DocuSign_eSign
|
|
171
168
|
# @return [Hash] Returns the value in the form of hash
|
172
169
|
def _to_hash(value)
|
173
170
|
if value.is_a?(Array)
|
174
|
-
value.compact.map{ |v| _to_hash(v) }
|
171
|
+
value.compact.map { |v| _to_hash(v) }
|
175
172
|
elsif value.is_a?(Hash)
|
176
173
|
{}.tap do |hash|
|
177
174
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
@@ -184,5 +181,4 @@ module DocuSign_eSign
|
|
184
181
|
end
|
185
182
|
|
186
183
|
end
|
187
|
-
|
188
184
|
end
|
@@ -12,7 +12,6 @@ Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
require 'date'
|
13
13
|
|
14
14
|
module DocuSign_eSign
|
15
|
-
|
16
15
|
class User
|
17
16
|
#
|
18
17
|
attr_accessor :cell_phone_number
|
@@ -32,7 +31,6 @@ module DocuSign_eSign
|
|
32
31
|
#
|
33
32
|
attr_accessor :external_claims
|
34
33
|
|
35
|
-
|
36
34
|
# Attribute mapping from ruby-style variable name to JSON key.
|
37
35
|
def self.attribute_map
|
38
36
|
{
|
@@ -63,7 +61,7 @@ module DocuSign_eSign
|
|
63
61
|
return unless attributes.is_a?(Hash)
|
64
62
|
|
65
63
|
# convert string to symbol for hash key
|
66
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
64
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
67
65
|
|
68
66
|
if attributes.has_key?(:'cellPhoneNumber')
|
69
67
|
self.cell_phone_number = attributes[:'cellPhoneNumber']
|
@@ -92,20 +90,19 @@ module DocuSign_eSign
|
|
92
90
|
self.external_claims = value
|
93
91
|
end
|
94
92
|
end
|
95
|
-
|
96
93
|
end
|
97
94
|
|
98
95
|
# Show invalid properties with the reasons. Usually used together with valid?
|
99
|
-
# @return Array for valid
|
96
|
+
# @return Array for valid properties with the reasons
|
100
97
|
def list_invalid_properties
|
101
98
|
invalid_properties = Array.new
|
102
|
-
|
99
|
+
invalid_properties
|
103
100
|
end
|
104
101
|
|
105
102
|
# Check to see if the all the properties in the model are valid
|
106
103
|
# @return true if the model is valid
|
107
104
|
def valid?
|
108
|
-
|
105
|
+
true
|
109
106
|
end
|
110
107
|
|
111
108
|
# Checks equality by comparing each attribute.
|
@@ -140,10 +137,10 @@ module DocuSign_eSign
|
|
140
137
|
return nil unless attributes.is_a?(Hash)
|
141
138
|
self.class.swagger_types.each_pair do |key, type|
|
142
139
|
if type =~ /\AArray<(.*)>/i
|
143
|
-
# check to ensure the input is an array given that the
|
140
|
+
# check to ensure the input is an array given that the attribute
|
144
141
|
# is documented as an array but the input is not
|
145
142
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
146
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
143
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
147
144
|
end
|
148
145
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
149
146
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
@@ -225,7 +222,7 @@ module DocuSign_eSign
|
|
225
222
|
# @return [Hash] Returns the value in the form of hash
|
226
223
|
def _to_hash(value)
|
227
224
|
if value.is_a?(Array)
|
228
|
-
value.compact.map{ |v| _to_hash(v) }
|
225
|
+
value.compact.map { |v| _to_hash(v) }
|
229
226
|
elsif value.is_a?(Hash)
|
230
227
|
{}.tap do |hash|
|
231
228
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
@@ -238,5 +235,4 @@ module DocuSign_eSign
|
|
238
235
|
end
|
239
236
|
|
240
237
|
end
|
241
|
-
|
242
238
|
end
|
@@ -12,7 +12,6 @@ Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
require 'date'
|
13
13
|
|
14
14
|
module DocuSign_eSign
|
15
|
-
|
16
15
|
class UserInfoResponse
|
17
16
|
# The envelope ID of the envelope status that failed to post.
|
18
17
|
attr_accessor :envelope_id
|
@@ -26,7 +25,6 @@ module DocuSign_eSign
|
|
26
25
|
|
27
26
|
attr_accessor :user
|
28
27
|
|
29
|
-
|
30
28
|
# Attribute mapping from ruby-style variable name to JSON key.
|
31
29
|
def self.attribute_map
|
32
30
|
{
|
@@ -55,7 +53,7 @@ module DocuSign_eSign
|
|
55
53
|
return unless attributes.is_a?(Hash)
|
56
54
|
|
57
55
|
# convert string to symbol for hash key
|
58
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
56
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
59
57
|
|
60
58
|
if attributes.has_key?(:'envelopeId')
|
61
59
|
self.envelope_id = attributes[:'envelopeId']
|
@@ -76,20 +74,19 @@ module DocuSign_eSign
|
|
76
74
|
if attributes.has_key?(:'user')
|
77
75
|
self.user = attributes[:'user']
|
78
76
|
end
|
79
|
-
|
80
77
|
end
|
81
78
|
|
82
79
|
# Show invalid properties with the reasons. Usually used together with valid?
|
83
|
-
# @return Array for valid
|
80
|
+
# @return Array for valid properties with the reasons
|
84
81
|
def list_invalid_properties
|
85
82
|
invalid_properties = Array.new
|
86
|
-
|
83
|
+
invalid_properties
|
87
84
|
end
|
88
85
|
|
89
86
|
# Check to see if the all the properties in the model are valid
|
90
87
|
# @return true if the model is valid
|
91
88
|
def valid?
|
92
|
-
|
89
|
+
true
|
93
90
|
end
|
94
91
|
|
95
92
|
# Checks equality by comparing each attribute.
|
@@ -123,10 +120,10 @@ module DocuSign_eSign
|
|
123
120
|
return nil unless attributes.is_a?(Hash)
|
124
121
|
self.class.swagger_types.each_pair do |key, type|
|
125
122
|
if type =~ /\AArray<(.*)>/i
|
126
|
-
# check to ensure the input is an array given that the
|
123
|
+
# check to ensure the input is an array given that the attribute
|
127
124
|
# is documented as an array but the input is not
|
128
125
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
129
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
126
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
130
127
|
end
|
131
128
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
132
129
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
@@ -208,7 +205,7 @@ module DocuSign_eSign
|
|
208
205
|
# @return [Hash] Returns the value in the form of hash
|
209
206
|
def _to_hash(value)
|
210
207
|
if value.is_a?(Array)
|
211
|
-
value.compact.map{ |v| _to_hash(v) }
|
208
|
+
value.compact.map { |v| _to_hash(v) }
|
212
209
|
elsif value.is_a?(Hash)
|
213
210
|
{}.tap do |hash|
|
214
211
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
@@ -221,5 +218,4 @@ module DocuSign_eSign
|
|
221
218
|
end
|
222
219
|
|
223
220
|
end
|
224
|
-
|
225
221
|
end
|
@@ -50,6 +50,9 @@ module DocuSign_eSign
|
|
50
50
|
# A list of the group information for groups to add the user to. Group information can be found by calling [ML:GET group information]. The only required parameter is groupId. The parameters are: * groupId - The DocuSign group ID for the group. * groupName - The name of the group * permissionProfileId - The ID of the permission profile associated with the group. * groupType - The group type.
|
51
51
|
attr_accessor :group_list
|
52
52
|
|
53
|
+
#
|
54
|
+
attr_accessor :has_remote_notary
|
55
|
+
|
53
56
|
attr_accessor :home_address
|
54
57
|
|
55
58
|
# Contains the URI for an endpoint that you can use to retrieve the initials image.
|
@@ -150,6 +153,7 @@ module DocuSign_eSign
|
|
150
153
|
:'first_name' => :'firstName',
|
151
154
|
:'forgotten_password_info' => :'forgottenPasswordInfo',
|
152
155
|
:'group_list' => :'groupList',
|
156
|
+
:'has_remote_notary' => :'hasRemoteNotary',
|
153
157
|
:'home_address' => :'homeAddress',
|
154
158
|
:'initials_image_uri' => :'initialsImageUri',
|
155
159
|
:'is_admin' => :'isAdmin',
|
@@ -198,6 +202,7 @@ module DocuSign_eSign
|
|
198
202
|
:'first_name' => :'String',
|
199
203
|
:'forgotten_password_info' => :'ForgottenPasswordInformation',
|
200
204
|
:'group_list' => :'Array<Group>',
|
205
|
+
:'has_remote_notary' => :'BOOLEAN',
|
201
206
|
:'home_address' => :'AddressInformation',
|
202
207
|
:'initials_image_uri' => :'String',
|
203
208
|
:'is_admin' => :'String',
|
@@ -296,6 +301,10 @@ module DocuSign_eSign
|
|
296
301
|
end
|
297
302
|
end
|
298
303
|
|
304
|
+
if attributes.has_key?(:'hasRemoteNotary')
|
305
|
+
self.has_remote_notary = attributes[:'hasRemoteNotary']
|
306
|
+
end
|
307
|
+
|
299
308
|
if attributes.has_key?(:'homeAddress')
|
300
309
|
self.home_address = attributes[:'homeAddress']
|
301
310
|
end
|
@@ -444,6 +453,7 @@ module DocuSign_eSign
|
|
444
453
|
first_name == o.first_name &&
|
445
454
|
forgotten_password_info == o.forgotten_password_info &&
|
446
455
|
group_list == o.group_list &&
|
456
|
+
has_remote_notary == o.has_remote_notary &&
|
447
457
|
home_address == o.home_address &&
|
448
458
|
initials_image_uri == o.initials_image_uri &&
|
449
459
|
is_admin == o.is_admin &&
|
@@ -484,7 +494,7 @@ module DocuSign_eSign
|
|
484
494
|
# Calculates hash code according to all attributes.
|
485
495
|
# @return [Fixnum] Hash code
|
486
496
|
def hash
|
487
|
-
[activation_access_code, company, connect_configurations, country_code, created_date_time, custom_settings, default_account_id, email, enable_connect_for_user, error_details, first_name, forgotten_password_info, group_list, home_address, initials_image_uri, is_admin, is_nar_enabled, job_title, last_login, last_name, login_status, middle_name, password, password_expiration, permission_profile_id, permission_profile_name, profile_image_uri, send_activation_email, send_activation_on_invalid_login, signature_image_uri, subscribe, suffix_name, title, uri, user_added_to_account_date_time, user_id, user_name, user_profile_last_modified_date, user_settings, user_status, user_type, work_address].hash
|
497
|
+
[activation_access_code, company, connect_configurations, country_code, created_date_time, custom_settings, default_account_id, email, enable_connect_for_user, error_details, first_name, forgotten_password_info, group_list, has_remote_notary, home_address, initials_image_uri, is_admin, is_nar_enabled, job_title, last_login, last_name, login_status, middle_name, password, password_expiration, permission_profile_id, permission_profile_name, profile_image_uri, send_activation_email, send_activation_on_invalid_login, signature_image_uri, subscribe, suffix_name, title, uri, user_added_to_account_date_time, user_id, user_name, user_profile_last_modified_date, user_settings, user_status, user_type, work_address].hash
|
488
498
|
end
|
489
499
|
|
490
500
|
# Builds the object from hash
|
data/tests/Gemfile.lock
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
docusign_esign (3.7.
|
4
|
+
docusign_esign (3.7.1)
|
5
|
+
addressable (~> 2.7, >= 2.7.0)
|
5
6
|
json (~> 2.1, >= 2.1.0)
|
6
7
|
jwt (~> 2.2, >= 2.2.1)
|
7
8
|
typhoeus (~> 1.0, >= 1.0.1)
|
@@ -9,25 +10,28 @@ PATH
|
|
9
10
|
GEM
|
10
11
|
remote: https://rubygems.org/
|
11
12
|
specs:
|
13
|
+
addressable (2.7.0)
|
14
|
+
public_suffix (>= 2.0.2, < 5.0)
|
12
15
|
diff-lcs (1.4.4)
|
13
16
|
ethon (0.12.0)
|
14
17
|
ffi (>= 1.3.0)
|
15
18
|
ffi (1.13.1)
|
16
19
|
json (2.3.1)
|
17
|
-
jwt (2.2.
|
20
|
+
jwt (2.2.2)
|
21
|
+
public_suffix (4.0.6)
|
18
22
|
rspec (3.9.0)
|
19
23
|
rspec-core (~> 3.9.0)
|
20
24
|
rspec-expectations (~> 3.9.0)
|
21
25
|
rspec-mocks (~> 3.9.0)
|
22
|
-
rspec-core (3.9.
|
26
|
+
rspec-core (3.9.3)
|
23
27
|
rspec-support (~> 3.9.3)
|
24
|
-
rspec-expectations (3.9.
|
28
|
+
rspec-expectations (3.9.3)
|
25
29
|
diff-lcs (>= 1.2.0, < 2.0)
|
26
30
|
rspec-support (~> 3.9.0)
|
27
31
|
rspec-mocks (3.9.1)
|
28
32
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
33
|
rspec-support (~> 3.9.0)
|
30
|
-
rspec-support (3.9.
|
34
|
+
rspec-support (3.9.4)
|
31
35
|
typhoeus (1.4.0)
|
32
36
|
ethon (>= 0.9.0)
|
33
37
|
|