docusign_webforms 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +38 -0
- data/Gemfile +7 -0
- data/README.md +132 -0
- data/Rakefile +8 -0
- data/docusign_webforms.gemspec +48 -0
- data/lib/docusign_webforms/api/form_instance_management_api.rb +272 -0
- data/lib/docusign_webforms/api/form_management_api.rb +192 -0
- data/lib/docusign_webforms/client/api_client.rb +600 -0
- data/lib/docusign_webforms/client/api_error.rb +37 -0
- data/lib/docusign_webforms/client/auth/oauth.rb +1061 -0
- data/lib/docusign_webforms/configuration.rb +203 -0
- data/lib/docusign_webforms/models/account_id.rb +175 -0
- data/lib/docusign_webforms/models/assertion_id.rb +175 -0
- data/lib/docusign_webforms/models/authentication_instant.rb +175 -0
- data/lib/docusign_webforms/models/authentication_method.rb +45 -0
- data/lib/docusign_webforms/models/brand_id.rb +175 -0
- data/lib/docusign_webforms/models/client_user_id.rb +175 -0
- data/lib/docusign_webforms/models/component_key.rb +174 -0
- data/lib/docusign_webforms/models/count.rb +175 -0
- data/lib/docusign_webforms/models/create_instance_request_body.rb +264 -0
- data/lib/docusign_webforms/models/created_date_time.rb +175 -0
- data/lib/docusign_webforms/models/date_time.rb +174 -0
- data/lib/docusign_webforms/models/envelope_id.rb +175 -0
- data/lib/docusign_webforms/models/expiration_date_time.rb +175 -0
- data/lib/docusign_webforms/models/expiration_offset.rb +175 -0
- data/lib/docusign_webforms/models/form_sort_by.rb +175 -0
- data/lib/docusign_webforms/models/form_url.rb +175 -0
- data/lib/docusign_webforms/models/guid.rb +174 -0
- data/lib/docusign_webforms/models/http_error.rb +195 -0
- data/lib/docusign_webforms/models/http_success.rb +184 -0
- data/lib/docusign_webforms/models/instance_id.rb +175 -0
- data/lib/docusign_webforms/models/instance_source.rb +31 -0
- data/lib/docusign_webforms/models/instance_status.rb +31 -0
- data/lib/docusign_webforms/models/instance_token.rb +175 -0
- data/lib/docusign_webforms/models/is_private_access.rb +175 -0
- data/lib/docusign_webforms/models/is_published.rb +175 -0
- data/lib/docusign_webforms/models/is_standalone.rb +175 -0
- data/lib/docusign_webforms/models/last_modified_date_time.rb +175 -0
- data/lib/docusign_webforms/models/return_url.rb +175 -0
- data/lib/docusign_webforms/models/search_text.rb +175 -0
- data/lib/docusign_webforms/models/security_domain.rb +175 -0
- data/lib/docusign_webforms/models/source.rb +31 -0
- data/lib/docusign_webforms/models/start_position.rb +175 -0
- data/lib/docusign_webforms/models/tags.rb +175 -0
- data/lib/docusign_webforms/models/template_properties.rb +217 -0
- data/lib/docusign_webforms/models/token_expiration_date_time.rb +175 -0
- data/lib/docusign_webforms/models/update_instance_request_body.rb +184 -0
- data/lib/docusign_webforms/models/user_filter.rb +30 -0
- data/lib/docusign_webforms/models/user_id.rb +175 -0
- data/lib/docusign_webforms/models/web_form.rb +268 -0
- data/lib/docusign_webforms/models/web_form_adm_type.rb +39 -0
- data/lib/docusign_webforms/models/web_form_component.rb +248 -0
- data/lib/docusign_webforms/models/web_form_component_type.rb +34 -0
- data/lib/docusign_webforms/models/web_form_components_map.rb +175 -0
- data/lib/docusign_webforms/models/web_form_content.rb +217 -0
- data/lib/docusign_webforms/models/web_form_id.rb +175 -0
- data/lib/docusign_webforms/models/web_form_instance.rb +295 -0
- data/lib/docusign_webforms/models/web_form_instance_envelopes.rb +183 -0
- data/lib/docusign_webforms/models/web_form_instance_list.rb +187 -0
- data/lib/docusign_webforms/models/web_form_instance_metadata.rb +237 -0
- data/lib/docusign_webforms/models/web_form_metadata.rb +377 -0
- data/lib/docusign_webforms/models/web_form_name.rb +175 -0
- data/lib/docusign_webforms/models/web_form_properties.rb +193 -0
- data/lib/docusign_webforms/models/web_form_published_names.rb +175 -0
- data/lib/docusign_webforms/models/web_form_source.rb +29 -0
- data/lib/docusign_webforms/models/web_form_state.rb +29 -0
- data/lib/docusign_webforms/models/web_form_summary.rb +250 -0
- data/lib/docusign_webforms/models/web_form_summary_list.rb +247 -0
- data/lib/docusign_webforms/models/web_form_user_info.rb +209 -0
- data/lib/docusign_webforms/models/web_form_values.rb +175 -0
- data/lib/docusign_webforms/models/web_form_version_id.rb +175 -0
- data/lib/docusign_webforms/version.rb +14 -0
- data/lib/docusign_webforms.rb +65 -0
- data/runLinter.sh +1 -0
- data/tests/Gemfile +5 -0
- data/tests/spec/unit_tests_using_jwt_spec.rb +38 -0
- metadata +382 -0
@@ -0,0 +1,295 @@
|
|
1
|
+
=begin
|
2
|
+
#Web Forms API version 1.1
|
3
|
+
|
4
|
+
#The Web Forms API facilitates generating semantic HTML forms around everyday contracts.
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.1.0
|
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_WebForms
|
15
|
+
# An object that contains the Web Form Instance required to render it and its metadata such as created by, created time
|
16
|
+
class WebFormInstance
|
17
|
+
attr_accessor :form_url
|
18
|
+
|
19
|
+
attr_accessor :instance_token
|
20
|
+
|
21
|
+
attr_accessor :token_expiration_date_time
|
22
|
+
|
23
|
+
attr_accessor :id
|
24
|
+
|
25
|
+
# Web form from which the instance is created
|
26
|
+
attr_accessor :form_id
|
27
|
+
|
28
|
+
attr_accessor :account_id
|
29
|
+
|
30
|
+
attr_accessor :client_user_id
|
31
|
+
|
32
|
+
# List of tags provided by the user with each request. This field is optional.
|
33
|
+
attr_accessor :tags
|
34
|
+
|
35
|
+
attr_accessor :status
|
36
|
+
|
37
|
+
# The associated envelope that is created when the instance is submitted
|
38
|
+
attr_accessor :envelopes
|
39
|
+
|
40
|
+
attr_accessor :instance_metadata
|
41
|
+
|
42
|
+
attr_accessor :form_values
|
43
|
+
|
44
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
45
|
+
def self.attribute_map
|
46
|
+
{
|
47
|
+
:'form_url' => :'formUrl',
|
48
|
+
:'instance_token' => :'instanceToken',
|
49
|
+
:'token_expiration_date_time' => :'tokenExpirationDateTime',
|
50
|
+
:'id' => :'id',
|
51
|
+
:'form_id' => :'formId',
|
52
|
+
:'account_id' => :'accountId',
|
53
|
+
:'client_user_id' => :'clientUserId',
|
54
|
+
:'tags' => :'tags',
|
55
|
+
:'status' => :'status',
|
56
|
+
:'envelopes' => :'envelopes',
|
57
|
+
:'instance_metadata' => :'instanceMetadata',
|
58
|
+
:'form_values' => :'formValues'
|
59
|
+
}
|
60
|
+
end
|
61
|
+
|
62
|
+
# Attribute type mapping.
|
63
|
+
def self.swagger_types
|
64
|
+
{
|
65
|
+
:'form_url' => :'String',
|
66
|
+
:'instance_token' => :'String',
|
67
|
+
:'token_expiration_date_time' => :'DateTime',
|
68
|
+
:'id' => :'String',
|
69
|
+
:'form_id' => :'String',
|
70
|
+
:'account_id' => :'String',
|
71
|
+
:'client_user_id' => :'String',
|
72
|
+
:'tags' => :'Array<String>',
|
73
|
+
:'status' => :'InstanceStatus',
|
74
|
+
:'envelopes' => :'Array<WebFormInstanceEnvelopes>',
|
75
|
+
:'instance_metadata' => :'WebFormInstanceMetadata',
|
76
|
+
:'form_values' => :'WebFormValues'
|
77
|
+
}
|
78
|
+
end
|
79
|
+
|
80
|
+
# Initializes the object
|
81
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
82
|
+
def initialize(attributes = {})
|
83
|
+
return unless attributes.is_a?(Hash)
|
84
|
+
|
85
|
+
# convert string to symbol for hash key
|
86
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
87
|
+
|
88
|
+
if attributes.has_key?(:'formUrl')
|
89
|
+
self.form_url = attributes[:'formUrl']
|
90
|
+
end
|
91
|
+
|
92
|
+
if attributes.has_key?(:'instanceToken')
|
93
|
+
self.instance_token = attributes[:'instanceToken']
|
94
|
+
end
|
95
|
+
|
96
|
+
if attributes.has_key?(:'tokenExpirationDateTime')
|
97
|
+
self.token_expiration_date_time = attributes[:'tokenExpirationDateTime']
|
98
|
+
end
|
99
|
+
|
100
|
+
if attributes.has_key?(:'id')
|
101
|
+
self.id = attributes[:'id']
|
102
|
+
end
|
103
|
+
|
104
|
+
if attributes.has_key?(:'formId')
|
105
|
+
self.form_id = attributes[:'formId']
|
106
|
+
end
|
107
|
+
|
108
|
+
if attributes.has_key?(:'accountId')
|
109
|
+
self.account_id = attributes[:'accountId']
|
110
|
+
end
|
111
|
+
|
112
|
+
if attributes.has_key?(:'clientUserId')
|
113
|
+
self.client_user_id = attributes[:'clientUserId']
|
114
|
+
end
|
115
|
+
|
116
|
+
if attributes.has_key?(:'tags')
|
117
|
+
if (value = attributes[:'tags']).is_a?(Array)
|
118
|
+
self.tags = value
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
if attributes.has_key?(:'status')
|
123
|
+
self.status = attributes[:'status']
|
124
|
+
end
|
125
|
+
|
126
|
+
if attributes.has_key?(:'envelopes')
|
127
|
+
if (value = attributes[:'envelopes']).is_a?(Array)
|
128
|
+
self.envelopes = value
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
if attributes.has_key?(:'instanceMetadata')
|
133
|
+
self.instance_metadata = attributes[:'instanceMetadata']
|
134
|
+
end
|
135
|
+
|
136
|
+
if attributes.has_key?(:'formValues')
|
137
|
+
self.form_values = attributes[:'formValues']
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
142
|
+
# @return Array for valid properties with the reasons
|
143
|
+
def list_invalid_properties
|
144
|
+
invalid_properties = Array.new
|
145
|
+
if @id.nil?
|
146
|
+
invalid_properties.push('invalid value for "id", id cannot be nil.')
|
147
|
+
end
|
148
|
+
|
149
|
+
invalid_properties
|
150
|
+
end
|
151
|
+
|
152
|
+
# Check to see if the all the properties in the model are valid
|
153
|
+
# @return true if the model is valid
|
154
|
+
def valid?
|
155
|
+
return false if @id.nil?
|
156
|
+
true
|
157
|
+
end
|
158
|
+
|
159
|
+
# Checks equality by comparing each attribute.
|
160
|
+
# @param [Object] Object to be compared
|
161
|
+
def ==(o)
|
162
|
+
return true if self.equal?(o)
|
163
|
+
self.class == o.class &&
|
164
|
+
form_url == o.form_url &&
|
165
|
+
instance_token == o.instance_token &&
|
166
|
+
token_expiration_date_time == o.token_expiration_date_time &&
|
167
|
+
id == o.id &&
|
168
|
+
form_id == o.form_id &&
|
169
|
+
account_id == o.account_id &&
|
170
|
+
client_user_id == o.client_user_id &&
|
171
|
+
tags == o.tags &&
|
172
|
+
status == o.status &&
|
173
|
+
envelopes == o.envelopes &&
|
174
|
+
instance_metadata == o.instance_metadata &&
|
175
|
+
form_values == o.form_values
|
176
|
+
end
|
177
|
+
|
178
|
+
# @see the `==` method
|
179
|
+
# @param [Object] Object to be compared
|
180
|
+
def eql?(o)
|
181
|
+
self == o
|
182
|
+
end
|
183
|
+
|
184
|
+
# Calculates hash code according to all attributes.
|
185
|
+
# @return [Fixnum] Hash code
|
186
|
+
def hash
|
187
|
+
[form_url, instance_token, token_expiration_date_time, id, form_id, account_id, client_user_id, tags, status, envelopes, instance_metadata, form_values].hash
|
188
|
+
end
|
189
|
+
|
190
|
+
# Builds the object from hash
|
191
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
192
|
+
# @return [Object] Returns the model itself
|
193
|
+
def build_from_hash(attributes)
|
194
|
+
return nil unless attributes.is_a?(Hash)
|
195
|
+
self.class.swagger_types.each_pair do |key, type|
|
196
|
+
if type =~ /\AArray<(.*)>/i
|
197
|
+
# check to ensure the input is an array given that the attribute
|
198
|
+
# is documented as an array but the input is not
|
199
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
200
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
201
|
+
end
|
202
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
203
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
204
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
205
|
+
end
|
206
|
+
|
207
|
+
self
|
208
|
+
end
|
209
|
+
|
210
|
+
# Deserializes the data based on type
|
211
|
+
# @param string type Data type
|
212
|
+
# @param string value Value to be deserialized
|
213
|
+
# @return [Object] Deserialized data
|
214
|
+
def _deserialize(type, value)
|
215
|
+
case type.to_sym
|
216
|
+
when :DateTime
|
217
|
+
DateTime.parse(value)
|
218
|
+
when :Date
|
219
|
+
Date.parse(value)
|
220
|
+
when :String
|
221
|
+
value.to_s
|
222
|
+
when :Integer
|
223
|
+
value.to_i
|
224
|
+
when :Float
|
225
|
+
value.to_f
|
226
|
+
when :BOOLEAN
|
227
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
228
|
+
true
|
229
|
+
else
|
230
|
+
false
|
231
|
+
end
|
232
|
+
when :Object
|
233
|
+
# generic object (usually a Hash), return directly
|
234
|
+
value
|
235
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
236
|
+
inner_type = Regexp.last_match[:inner_type]
|
237
|
+
value.map { |v| _deserialize(inner_type, v) }
|
238
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
239
|
+
k_type = Regexp.last_match[:k_type]
|
240
|
+
v_type = Regexp.last_match[:v_type]
|
241
|
+
{}.tap do |hash|
|
242
|
+
value.each do |k, v|
|
243
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
244
|
+
end
|
245
|
+
end
|
246
|
+
else # model
|
247
|
+
temp_model = DocuSign_WebForms.const_get(type).new
|
248
|
+
temp_model.build_from_hash(value)
|
249
|
+
end
|
250
|
+
end
|
251
|
+
|
252
|
+
# Returns the string representation of the object
|
253
|
+
# @return [String] String presentation of the object
|
254
|
+
def to_s
|
255
|
+
to_hash.to_s
|
256
|
+
end
|
257
|
+
|
258
|
+
# to_body is an alias to to_hash (backward compatibility)
|
259
|
+
# @return [Hash] Returns the object in the form of hash
|
260
|
+
def to_body
|
261
|
+
to_hash
|
262
|
+
end
|
263
|
+
|
264
|
+
# Returns the object in the form of hash
|
265
|
+
# @return [Hash] Returns the object in the form of hash
|
266
|
+
def to_hash
|
267
|
+
hash = {}
|
268
|
+
self.class.attribute_map.each_pair do |attr, param|
|
269
|
+
value = self.send(attr)
|
270
|
+
next if value.nil?
|
271
|
+
hash[param] = _to_hash(value)
|
272
|
+
end
|
273
|
+
hash
|
274
|
+
end
|
275
|
+
|
276
|
+
# Outputs non-array value in the form of hash
|
277
|
+
# For object, use to_hash. Otherwise, just return the value
|
278
|
+
# @param [Object] value Any valid value
|
279
|
+
# @return [Hash] Returns the value in the form of hash
|
280
|
+
def _to_hash(value)
|
281
|
+
if value.is_a?(Array)
|
282
|
+
value.compact.map { |v| _to_hash(v) }
|
283
|
+
elsif value.is_a?(Hash)
|
284
|
+
{}.tap do |hash|
|
285
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
286
|
+
end
|
287
|
+
elsif value.respond_to? :to_hash
|
288
|
+
value.to_hash
|
289
|
+
else
|
290
|
+
value
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
294
|
+
end
|
295
|
+
end
|
@@ -0,0 +1,183 @@
|
|
1
|
+
=begin
|
2
|
+
#Web Forms API version 1.1
|
3
|
+
|
4
|
+
#The Web Forms API facilitates generating semantic HTML forms around everyday contracts.
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.1.0
|
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_WebForms
|
15
|
+
class WebFormInstanceEnvelopes
|
16
|
+
attr_accessor :id
|
17
|
+
|
18
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
19
|
+
def self.attribute_map
|
20
|
+
{
|
21
|
+
:'id' => :'id'
|
22
|
+
}
|
23
|
+
end
|
24
|
+
|
25
|
+
# Attribute type mapping.
|
26
|
+
def self.swagger_types
|
27
|
+
{
|
28
|
+
:'id' => :'String'
|
29
|
+
}
|
30
|
+
end
|
31
|
+
|
32
|
+
# Initializes the object
|
33
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
34
|
+
def initialize(attributes = {})
|
35
|
+
return unless attributes.is_a?(Hash)
|
36
|
+
|
37
|
+
# convert string to symbol for hash key
|
38
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
39
|
+
|
40
|
+
if attributes.has_key?(:'id')
|
41
|
+
self.id = attributes[:'id']
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
46
|
+
# @return Array for valid properties with the reasons
|
47
|
+
def list_invalid_properties
|
48
|
+
invalid_properties = Array.new
|
49
|
+
invalid_properties
|
50
|
+
end
|
51
|
+
|
52
|
+
# Check to see if the all the properties in the model are valid
|
53
|
+
# @return true if the model is valid
|
54
|
+
def valid?
|
55
|
+
true
|
56
|
+
end
|
57
|
+
|
58
|
+
# Checks equality by comparing each attribute.
|
59
|
+
# @param [Object] Object to be compared
|
60
|
+
def ==(o)
|
61
|
+
return true if self.equal?(o)
|
62
|
+
self.class == o.class &&
|
63
|
+
id == o.id
|
64
|
+
end
|
65
|
+
|
66
|
+
# @see the `==` method
|
67
|
+
# @param [Object] Object to be compared
|
68
|
+
def eql?(o)
|
69
|
+
self == o
|
70
|
+
end
|
71
|
+
|
72
|
+
# Calculates hash code according to all attributes.
|
73
|
+
# @return [Fixnum] Hash code
|
74
|
+
def hash
|
75
|
+
[id].hash
|
76
|
+
end
|
77
|
+
|
78
|
+
# Builds the object from hash
|
79
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
80
|
+
# @return [Object] Returns the model itself
|
81
|
+
def build_from_hash(attributes)
|
82
|
+
return nil unless attributes.is_a?(Hash)
|
83
|
+
self.class.swagger_types.each_pair do |key, type|
|
84
|
+
if type =~ /\AArray<(.*)>/i
|
85
|
+
# check to ensure the input is an array given that the attribute
|
86
|
+
# is documented as an array but the input is not
|
87
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
88
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
89
|
+
end
|
90
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
91
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
92
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
93
|
+
end
|
94
|
+
|
95
|
+
self
|
96
|
+
end
|
97
|
+
|
98
|
+
# Deserializes the data based on type
|
99
|
+
# @param string type Data type
|
100
|
+
# @param string value Value to be deserialized
|
101
|
+
# @return [Object] Deserialized data
|
102
|
+
def _deserialize(type, value)
|
103
|
+
case type.to_sym
|
104
|
+
when :DateTime
|
105
|
+
DateTime.parse(value)
|
106
|
+
when :Date
|
107
|
+
Date.parse(value)
|
108
|
+
when :String
|
109
|
+
value.to_s
|
110
|
+
when :Integer
|
111
|
+
value.to_i
|
112
|
+
when :Float
|
113
|
+
value.to_f
|
114
|
+
when :BOOLEAN
|
115
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
116
|
+
true
|
117
|
+
else
|
118
|
+
false
|
119
|
+
end
|
120
|
+
when :Object
|
121
|
+
# generic object (usually a Hash), return directly
|
122
|
+
value
|
123
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
124
|
+
inner_type = Regexp.last_match[:inner_type]
|
125
|
+
value.map { |v| _deserialize(inner_type, v) }
|
126
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
127
|
+
k_type = Regexp.last_match[:k_type]
|
128
|
+
v_type = Regexp.last_match[:v_type]
|
129
|
+
{}.tap do |hash|
|
130
|
+
value.each do |k, v|
|
131
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
132
|
+
end
|
133
|
+
end
|
134
|
+
else # model
|
135
|
+
temp_model = DocuSign_WebForms.const_get(type).new
|
136
|
+
temp_model.build_from_hash(value)
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
# Returns the string representation of the object
|
141
|
+
# @return [String] String presentation of the object
|
142
|
+
def to_s
|
143
|
+
to_hash.to_s
|
144
|
+
end
|
145
|
+
|
146
|
+
# to_body is an alias to to_hash (backward compatibility)
|
147
|
+
# @return [Hash] Returns the object in the form of hash
|
148
|
+
def to_body
|
149
|
+
to_hash
|
150
|
+
end
|
151
|
+
|
152
|
+
# Returns the object in the form of hash
|
153
|
+
# @return [Hash] Returns the object in the form of hash
|
154
|
+
def to_hash
|
155
|
+
hash = {}
|
156
|
+
self.class.attribute_map.each_pair do |attr, param|
|
157
|
+
value = self.send(attr)
|
158
|
+
next if value.nil?
|
159
|
+
hash[param] = _to_hash(value)
|
160
|
+
end
|
161
|
+
hash
|
162
|
+
end
|
163
|
+
|
164
|
+
# Outputs non-array value in the form of hash
|
165
|
+
# For object, use to_hash. Otherwise, just return the value
|
166
|
+
# @param [Object] value Any valid value
|
167
|
+
# @return [Hash] Returns the value in the form of hash
|
168
|
+
def _to_hash(value)
|
169
|
+
if value.is_a?(Array)
|
170
|
+
value.compact.map { |v| _to_hash(v) }
|
171
|
+
elsif value.is_a?(Hash)
|
172
|
+
{}.tap do |hash|
|
173
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
174
|
+
end
|
175
|
+
elsif value.respond_to? :to_hash
|
176
|
+
value.to_hash
|
177
|
+
else
|
178
|
+
value
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
end
|
183
|
+
end
|
@@ -0,0 +1,187 @@
|
|
1
|
+
=begin
|
2
|
+
#Web Forms API version 1.1
|
3
|
+
|
4
|
+
#The Web Forms API facilitates generating semantic HTML forms around everyday contracts.
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.1.0
|
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_WebForms
|
15
|
+
# A list of web form instance items.
|
16
|
+
class WebFormInstanceList
|
17
|
+
# Array of web form instance items.
|
18
|
+
attr_accessor :items
|
19
|
+
|
20
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
21
|
+
def self.attribute_map
|
22
|
+
{
|
23
|
+
:'items' => :'items'
|
24
|
+
}
|
25
|
+
end
|
26
|
+
|
27
|
+
# Attribute type mapping.
|
28
|
+
def self.swagger_types
|
29
|
+
{
|
30
|
+
:'items' => :'Array<WebFormInstance>'
|
31
|
+
}
|
32
|
+
end
|
33
|
+
|
34
|
+
# Initializes the object
|
35
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
36
|
+
def initialize(attributes = {})
|
37
|
+
return unless attributes.is_a?(Hash)
|
38
|
+
|
39
|
+
# convert string to symbol for hash key
|
40
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
41
|
+
|
42
|
+
if attributes.has_key?(:'items')
|
43
|
+
if (value = attributes[:'items']).is_a?(Array)
|
44
|
+
self.items = value
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
50
|
+
# @return Array for valid properties with the reasons
|
51
|
+
def list_invalid_properties
|
52
|
+
invalid_properties = Array.new
|
53
|
+
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
|
+
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
|
+
items == o.items
|
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
|
+
[items].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 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_WebForms.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
|
+
end
|