docusign_esign 3.1.0.pre.rc1 → 3.1.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,235 +0,0 @@
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.1
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 DisplayApplianceInfo
17
- #
18
- attr_accessor :document_data
19
-
20
- #
21
- attr_accessor :document_pages
22
-
23
- attr_accessor :envelope_data
24
-
25
- #
26
- attr_accessor :page_data
27
-
28
- #
29
- attr_accessor :recipient_data
30
-
31
-
32
- # Attribute mapping from ruby-style variable name to JSON key.
33
- def self.attribute_map
34
- {
35
- :'document_data' => :'documentData',
36
- :'document_pages' => :'documentPages',
37
- :'envelope_data' => :'envelopeData',
38
- :'page_data' => :'pageData',
39
- :'recipient_data' => :'recipientData'
40
- }
41
- end
42
-
43
- # Attribute type mapping.
44
- def self.swagger_types
45
- {
46
- :'document_data' => :'Array<DisplayApplianceDocument>',
47
- :'document_pages' => :'Array<DisplayApplianceDocumentPage>',
48
- :'envelope_data' => :'DisplayApplianceEnvelope',
49
- :'page_data' => :'Array<DisplayAppliancePage>',
50
- :'recipient_data' => :'Array<DisplayApplianceRecipient>'
51
- }
52
- end
53
-
54
- # Initializes the object
55
- # @param [Hash] attributes Model attributes in the form of hash
56
- def initialize(attributes = {})
57
- return unless attributes.is_a?(Hash)
58
-
59
- # convert string to symbol for hash key
60
- attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
61
-
62
- if attributes.has_key?(:'documentData')
63
- if (value = attributes[:'documentData']).is_a?(Array)
64
- self.document_data = value
65
- end
66
- end
67
-
68
- if attributes.has_key?(:'documentPages')
69
- if (value = attributes[:'documentPages']).is_a?(Array)
70
- self.document_pages = value
71
- end
72
- end
73
-
74
- if attributes.has_key?(:'envelopeData')
75
- self.envelope_data = attributes[:'envelopeData']
76
- end
77
-
78
- if attributes.has_key?(:'pageData')
79
- if (value = attributes[:'pageData']).is_a?(Array)
80
- self.page_data = value
81
- end
82
- end
83
-
84
- if attributes.has_key?(:'recipientData')
85
- if (value = attributes[:'recipientData']).is_a?(Array)
86
- self.recipient_data = value
87
- end
88
- end
89
-
90
- end
91
-
92
- # Show invalid properties with the reasons. Usually used together with valid?
93
- # @return Array for valid properies with the reasons
94
- def list_invalid_properties
95
- invalid_properties = Array.new
96
- return invalid_properties
97
- end
98
-
99
- # Check to see if the all the properties in the model are valid
100
- # @return true if the model is valid
101
- def valid?
102
- return true
103
- end
104
-
105
- # Checks equality by comparing each attribute.
106
- # @param [Object] Object to be compared
107
- def ==(o)
108
- return true if self.equal?(o)
109
- self.class == o.class &&
110
- document_data == o.document_data &&
111
- document_pages == o.document_pages &&
112
- envelope_data == o.envelope_data &&
113
- page_data == o.page_data &&
114
- recipient_data == o.recipient_data
115
- end
116
-
117
- # @see the `==` method
118
- # @param [Object] Object to be compared
119
- def eql?(o)
120
- self == o
121
- end
122
-
123
- # Calculates hash code according to all attributes.
124
- # @return [Fixnum] Hash code
125
- def hash
126
- [document_data, document_pages, envelope_data, page_data, recipient_data].hash
127
- end
128
-
129
- # Builds the object from hash
130
- # @param [Hash] attributes Model attributes in the form of hash
131
- # @return [Object] Returns the model itself
132
- def build_from_hash(attributes)
133
- return nil unless attributes.is_a?(Hash)
134
- self.class.swagger_types.each_pair do |key, type|
135
- if type =~ /\AArray<(.*)>/i
136
- # check to ensure the input is an array given that the the attribute
137
- # is documented as an array but the input is not
138
- if attributes[self.class.attribute_map[key]].is_a?(Array)
139
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
140
- end
141
- elsif !attributes[self.class.attribute_map[key]].nil?
142
- self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
143
- end # or else data not found in attributes(hash), not an issue as the data can be optional
144
- end
145
-
146
- self
147
- end
148
-
149
- # Deserializes the data based on type
150
- # @param string type Data type
151
- # @param string value Value to be deserialized
152
- # @return [Object] Deserialized data
153
- def _deserialize(type, value)
154
- case type.to_sym
155
- when :DateTime
156
- DateTime.parse(value)
157
- when :Date
158
- Date.parse(value)
159
- when :String
160
- value.to_s
161
- when :Integer
162
- value.to_i
163
- when :Float
164
- value.to_f
165
- when :BOOLEAN
166
- if value.to_s =~ /\A(true|t|yes|y|1)\z/i
167
- true
168
- else
169
- false
170
- end
171
- when :Object
172
- # generic object (usually a Hash), return directly
173
- value
174
- when /\AArray<(?<inner_type>.+)>\z/
175
- inner_type = Regexp.last_match[:inner_type]
176
- value.map { |v| _deserialize(inner_type, v) }
177
- when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
178
- k_type = Regexp.last_match[:k_type]
179
- v_type = Regexp.last_match[:v_type]
180
- {}.tap do |hash|
181
- value.each do |k, v|
182
- hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
183
- end
184
- end
185
- else # model
186
- temp_model = DocuSign_eSign.const_get(type).new
187
- temp_model.build_from_hash(value)
188
- end
189
- end
190
-
191
- # Returns the string representation of the object
192
- # @return [String] String presentation of the object
193
- def to_s
194
- to_hash.to_s
195
- end
196
-
197
- # to_body is an alias to to_hash (backward compatibility)
198
- # @return [Hash] Returns the object in the form of hash
199
- def to_body
200
- to_hash
201
- end
202
-
203
- # Returns the object in the form of hash
204
- # @return [Hash] Returns the object in the form of hash
205
- def to_hash
206
- hash = {}
207
- self.class.attribute_map.each_pair do |attr, param|
208
- value = self.send(attr)
209
- next if value.nil?
210
- hash[param] = _to_hash(value)
211
- end
212
- hash
213
- end
214
-
215
- # Outputs non-array value in the form of hash
216
- # For object, use to_hash. Otherwise, just return the value
217
- # @param [Object] value Any valid value
218
- # @return [Hash] Returns the value in the form of hash
219
- def _to_hash(value)
220
- if value.is_a?(Array)
221
- value.compact.map{ |v| _to_hash(v) }
222
- elsif value.is_a?(Hash)
223
- {}.tap do |hash|
224
- value.each { |k, v| hash[k] = _to_hash(v) }
225
- end
226
- elsif value.respond_to? :to_hash
227
- value.to_hash
228
- else
229
- value
230
- end
231
- end
232
-
233
- end
234
-
235
- end
@@ -1,278 +0,0 @@
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.1
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 DisplayAppliancePage
17
- # Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute.
18
- attr_accessor :document_id
19
-
20
- #
21
- attr_accessor :document_name
22
-
23
- #
24
- attr_accessor :external_document_id
25
-
26
- # Height of the tab in pixels.
27
- attr_accessor :height
28
-
29
- #
30
- attr_accessor :is_first_page
31
-
32
- #
33
- attr_accessor :page_id
34
-
35
- #
36
- attr_accessor :page_no
37
-
38
- #
39
- attr_accessor :page_status
40
-
41
- #
42
- attr_accessor :page_type
43
-
44
- # Width of the tab in pixels.
45
- attr_accessor :width
46
-
47
-
48
- # Attribute mapping from ruby-style variable name to JSON key.
49
- def self.attribute_map
50
- {
51
- :'document_id' => :'documentId',
52
- :'document_name' => :'documentName',
53
- :'external_document_id' => :'externalDocumentId',
54
- :'height' => :'height',
55
- :'is_first_page' => :'isFirstPage',
56
- :'page_id' => :'pageId',
57
- :'page_no' => :'pageNo',
58
- :'page_status' => :'pageStatus',
59
- :'page_type' => :'pageType',
60
- :'width' => :'width'
61
- }
62
- end
63
-
64
- # Attribute type mapping.
65
- def self.swagger_types
66
- {
67
- :'document_id' => :'String',
68
- :'document_name' => :'String',
69
- :'external_document_id' => :'String',
70
- :'height' => :'Integer',
71
- :'is_first_page' => :'BOOLEAN',
72
- :'page_id' => :'String',
73
- :'page_no' => :'Integer',
74
- :'page_status' => :'String',
75
- :'page_type' => :'String',
76
- :'width' => :'Integer'
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?(:'documentId')
89
- self.document_id = attributes[:'documentId']
90
- end
91
-
92
- if attributes.has_key?(:'documentName')
93
- self.document_name = attributes[:'documentName']
94
- end
95
-
96
- if attributes.has_key?(:'externalDocumentId')
97
- self.external_document_id = attributes[:'externalDocumentId']
98
- end
99
-
100
- if attributes.has_key?(:'height')
101
- self.height = attributes[:'height']
102
- end
103
-
104
- if attributes.has_key?(:'isFirstPage')
105
- self.is_first_page = attributes[:'isFirstPage']
106
- end
107
-
108
- if attributes.has_key?(:'pageId')
109
- self.page_id = attributes[:'pageId']
110
- end
111
-
112
- if attributes.has_key?(:'pageNo')
113
- self.page_no = attributes[:'pageNo']
114
- end
115
-
116
- if attributes.has_key?(:'pageStatus')
117
- self.page_status = attributes[:'pageStatus']
118
- end
119
-
120
- if attributes.has_key?(:'pageType')
121
- self.page_type = attributes[:'pageType']
122
- end
123
-
124
- if attributes.has_key?(:'width')
125
- self.width = attributes[:'width']
126
- end
127
-
128
- end
129
-
130
- # Show invalid properties with the reasons. Usually used together with valid?
131
- # @return Array for valid properies with the reasons
132
- def list_invalid_properties
133
- invalid_properties = Array.new
134
- return invalid_properties
135
- end
136
-
137
- # Check to see if the all the properties in the model are valid
138
- # @return true if the model is valid
139
- def valid?
140
- return true
141
- end
142
-
143
- # Checks equality by comparing each attribute.
144
- # @param [Object] Object to be compared
145
- def ==(o)
146
- return true if self.equal?(o)
147
- self.class == o.class &&
148
- document_id == o.document_id &&
149
- document_name == o.document_name &&
150
- external_document_id == o.external_document_id &&
151
- height == o.height &&
152
- is_first_page == o.is_first_page &&
153
- page_id == o.page_id &&
154
- page_no == o.page_no &&
155
- page_status == o.page_status &&
156
- page_type == o.page_type &&
157
- width == o.width
158
- end
159
-
160
- # @see the `==` method
161
- # @param [Object] Object to be compared
162
- def eql?(o)
163
- self == o
164
- end
165
-
166
- # Calculates hash code according to all attributes.
167
- # @return [Fixnum] Hash code
168
- def hash
169
- [document_id, document_name, external_document_id, height, is_first_page, page_id, page_no, page_status, page_type, width].hash
170
- end
171
-
172
- # Builds the object from hash
173
- # @param [Hash] attributes Model attributes in the form of hash
174
- # @return [Object] Returns the model itself
175
- def build_from_hash(attributes)
176
- return nil unless attributes.is_a?(Hash)
177
- self.class.swagger_types.each_pair do |key, type|
178
- if type =~ /\AArray<(.*)>/i
179
- # check to ensure the input is an array given that the the attribute
180
- # is documented as an array but the input is not
181
- if attributes[self.class.attribute_map[key]].is_a?(Array)
182
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
183
- end
184
- elsif !attributes[self.class.attribute_map[key]].nil?
185
- self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
186
- end # or else data not found in attributes(hash), not an issue as the data can be optional
187
- end
188
-
189
- self
190
- end
191
-
192
- # Deserializes the data based on type
193
- # @param string type Data type
194
- # @param string value Value to be deserialized
195
- # @return [Object] Deserialized data
196
- def _deserialize(type, value)
197
- case type.to_sym
198
- when :DateTime
199
- DateTime.parse(value)
200
- when :Date
201
- Date.parse(value)
202
- when :String
203
- value.to_s
204
- when :Integer
205
- value.to_i
206
- when :Float
207
- value.to_f
208
- when :BOOLEAN
209
- if value.to_s =~ /\A(true|t|yes|y|1)\z/i
210
- true
211
- else
212
- false
213
- end
214
- when :Object
215
- # generic object (usually a Hash), return directly
216
- value
217
- when /\AArray<(?<inner_type>.+)>\z/
218
- inner_type = Regexp.last_match[:inner_type]
219
- value.map { |v| _deserialize(inner_type, v) }
220
- when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
221
- k_type = Regexp.last_match[:k_type]
222
- v_type = Regexp.last_match[:v_type]
223
- {}.tap do |hash|
224
- value.each do |k, v|
225
- hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
226
- end
227
- end
228
- else # model
229
- temp_model = DocuSign_eSign.const_get(type).new
230
- temp_model.build_from_hash(value)
231
- end
232
- end
233
-
234
- # Returns the string representation of the object
235
- # @return [String] String presentation of the object
236
- def to_s
237
- to_hash.to_s
238
- end
239
-
240
- # to_body is an alias to to_hash (backward compatibility)
241
- # @return [Hash] Returns the object in the form of hash
242
- def to_body
243
- to_hash
244
- end
245
-
246
- # Returns the object in the form of hash
247
- # @return [Hash] Returns the object in the form of hash
248
- def to_hash
249
- hash = {}
250
- self.class.attribute_map.each_pair do |attr, param|
251
- value = self.send(attr)
252
- next if value.nil?
253
- hash[param] = _to_hash(value)
254
- end
255
- hash
256
- end
257
-
258
- # Outputs non-array value in the form of hash
259
- # For object, use to_hash. Otherwise, just return the value
260
- # @param [Object] value Any valid value
261
- # @return [Hash] Returns the value in the form of hash
262
- def _to_hash(value)
263
- if value.is_a?(Array)
264
- value.compact.map{ |v| _to_hash(v) }
265
- elsif value.is_a?(Hash)
266
- {}.tap do |hash|
267
- value.each { |k, v| hash[k] = _to_hash(v) }
268
- end
269
- elsif value.respond_to? :to_hash
270
- value.to_hash
271
- else
272
- value
273
- end
274
- end
275
-
276
- end
277
-
278
- end