ultracart_api 3.4.0 → 3.4.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,223 @@
1
+ =begin
2
+ #UltraCart Rest API V2
3
+
4
+ #UltraCart REST API Version 2
5
+
6
+ OpenAPI spec version: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.15-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module UltracartClient
16
+ class RotatingTransactionGatewaysResponse
17
+ attr_accessor :error
18
+
19
+ attr_accessor :metadata
20
+
21
+ attr_accessor :rotating_gateways
22
+
23
+ # Indicates if API call was successful
24
+ attr_accessor :success
25
+
26
+ attr_accessor :warning
27
+
28
+ # Attribute mapping from ruby-style variable name to JSON key.
29
+ def self.attribute_map
30
+ {
31
+ :'error' => :'error',
32
+ :'metadata' => :'metadata',
33
+ :'rotating_gateways' => :'rotating_gateways',
34
+ :'success' => :'success',
35
+ :'warning' => :'warning'
36
+ }
37
+ end
38
+
39
+ # Attribute type mapping.
40
+ def self.swagger_types
41
+ {
42
+ :'error' => :'Error',
43
+ :'metadata' => :'ResponseMetadata',
44
+ :'rotating_gateways' => :'Array<RotatingTransactionGateway>',
45
+ :'success' => :'BOOLEAN',
46
+ :'warning' => :'Warning'
47
+ }
48
+ end
49
+
50
+ # Initializes the object
51
+ # @param [Hash] attributes Model attributes in the form of hash
52
+ def initialize(attributes = {})
53
+ return unless attributes.is_a?(Hash)
54
+
55
+ # convert string to symbol for hash key
56
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
57
+
58
+ if attributes.has_key?(:'error')
59
+ self.error = attributes[:'error']
60
+ end
61
+
62
+ if attributes.has_key?(:'metadata')
63
+ self.metadata = attributes[:'metadata']
64
+ end
65
+
66
+ if attributes.has_key?(:'rotating_gateways')
67
+ if (value = attributes[:'rotating_gateways']).is_a?(Array)
68
+ self.rotating_gateways = value
69
+ end
70
+ end
71
+
72
+ if attributes.has_key?(:'success')
73
+ self.success = attributes[:'success']
74
+ end
75
+
76
+ if attributes.has_key?(:'warning')
77
+ self.warning = attributes[:'warning']
78
+ end
79
+ end
80
+
81
+ # Show invalid properties with the reasons. Usually used together with valid?
82
+ # @return Array for valid properties with the reasons
83
+ def list_invalid_properties
84
+ invalid_properties = Array.new
85
+ invalid_properties
86
+ end
87
+
88
+ # Check to see if the all the properties in the model are valid
89
+ # @return true if the model is valid
90
+ def valid?
91
+ true
92
+ end
93
+
94
+ # Checks equality by comparing each attribute.
95
+ # @param [Object] Object to be compared
96
+ def ==(o)
97
+ return true if self.equal?(o)
98
+ self.class == o.class &&
99
+ error == o.error &&
100
+ metadata == o.metadata &&
101
+ rotating_gateways == o.rotating_gateways &&
102
+ success == o.success &&
103
+ warning == o.warning
104
+ end
105
+
106
+ # @see the `==` method
107
+ # @param [Object] Object to be compared
108
+ def eql?(o)
109
+ self == o
110
+ end
111
+
112
+ # Calculates hash code according to all attributes.
113
+ # @return [Fixnum] Hash code
114
+ def hash
115
+ [error, metadata, rotating_gateways, success, warning].hash
116
+ end
117
+
118
+ # Builds the object from hash
119
+ # @param [Hash] attributes Model attributes in the form of hash
120
+ # @return [Object] Returns the model itself
121
+ def build_from_hash(attributes)
122
+ return nil unless attributes.is_a?(Hash)
123
+ self.class.swagger_types.each_pair do |key, type|
124
+ if type =~ /\AArray<(.*)>/i
125
+ # check to ensure the input is an array given that the attribute
126
+ # is documented as an array but the input is not
127
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
128
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
129
+ end
130
+ elsif !attributes[self.class.attribute_map[key]].nil?
131
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
132
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
133
+ end
134
+
135
+ self
136
+ end
137
+
138
+ # Deserializes the data based on type
139
+ # @param string type Data type
140
+ # @param string value Value to be deserialized
141
+ # @return [Object] Deserialized data
142
+ def _deserialize(type, value)
143
+ case type.to_sym
144
+ when :DateTime
145
+ DateTime.parse(value)
146
+ when :Date
147
+ Date.parse(value)
148
+ when :String
149
+ value.to_s
150
+ when :Integer
151
+ value.to_i
152
+ when :Float
153
+ value.to_f
154
+ when :BOOLEAN
155
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
156
+ true
157
+ else
158
+ false
159
+ end
160
+ when :Object
161
+ # generic object (usually a Hash), return directly
162
+ value
163
+ when /\AArray<(?<inner_type>.+)>\z/
164
+ inner_type = Regexp.last_match[:inner_type]
165
+ value.map { |v| _deserialize(inner_type, v) }
166
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
167
+ k_type = Regexp.last_match[:k_type]
168
+ v_type = Regexp.last_match[:v_type]
169
+ {}.tap do |hash|
170
+ value.each do |k, v|
171
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
172
+ end
173
+ end
174
+ else # model
175
+ temp_model = UltracartClient.const_get(type).new
176
+ temp_model.build_from_hash(value)
177
+ end
178
+ end
179
+
180
+ # Returns the string representation of the object
181
+ # @return [String] String presentation of the object
182
+ def to_s
183
+ to_hash.to_s
184
+ end
185
+
186
+ # to_body is an alias to to_hash (backward compatibility)
187
+ # @return [Hash] Returns the object in the form of hash
188
+ def to_body
189
+ to_hash
190
+ end
191
+
192
+ # Returns the object in the form of hash
193
+ # @return [Hash] Returns the object in the form of hash
194
+ def to_hash
195
+ hash = {}
196
+ self.class.attribute_map.each_pair do |attr, param|
197
+ value = self.send(attr)
198
+ next if value.nil?
199
+ hash[param] = _to_hash(value)
200
+ end
201
+ hash
202
+ end
203
+
204
+ # Outputs non-array value in the form of hash
205
+ # For object, use to_hash. Otherwise, just return the value
206
+ # @param [Object] value Any valid value
207
+ # @return [Hash] Returns the value in the form of hash
208
+ def _to_hash(value)
209
+ if value.is_a?(Array)
210
+ value.compact.map { |v| _to_hash(v) }
211
+ elsif value.is_a?(Hash)
212
+ {}.tap do |hash|
213
+ value.each { |k, v| hash[k] = _to_hash(v) }
214
+ end
215
+ elsif value.respond_to? :to_hash
216
+ value.to_hash
217
+ else
218
+ value
219
+ end
220
+ end
221
+
222
+ end
223
+ end
@@ -0,0 +1,329 @@
1
+ =begin
2
+ #UltraCart Rest API V2
3
+
4
+ #UltraCart REST API Version 2
5
+
6
+ OpenAPI spec version: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.15-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module UltracartClient
16
+ class RtgSummaryGateway
17
+ attr_accessor :cascade_code
18
+
19
+ attr_accessor :code
20
+
21
+ attr_accessor :delay_auto_orders
22
+
23
+ attr_accessor :name
24
+
25
+ attr_accessor :reserve_percentage
26
+
27
+ # An optional date specifying the date up to which your gateway has released all reserve funds. This aids in profitability reporting.
28
+ attr_accessor :reserves_released_through
29
+
30
+ attr_accessor :rotating_transaction_gateway_oid
31
+
32
+ attr_accessor :show_ultracart_payments_verification
33
+
34
+ attr_accessor :show_ultracart_payments_verified
35
+
36
+ attr_accessor :status
37
+
38
+ attr_accessor :supports_auth
39
+
40
+ attr_accessor :supports_refund
41
+
42
+ attr_accessor :third_party
43
+
44
+ attr_accessor :traffic_percentage
45
+
46
+ attr_accessor :warning
47
+
48
+ attr_accessor :wepay_account_update_uri
49
+
50
+ attr_accessor :wepay_console_hostname
51
+
52
+ # Attribute mapping from ruby-style variable name to JSON key.
53
+ def self.attribute_map
54
+ {
55
+ :'cascade_code' => :'cascade_code',
56
+ :'code' => :'code',
57
+ :'delay_auto_orders' => :'delay_auto_orders',
58
+ :'name' => :'name',
59
+ :'reserve_percentage' => :'reserve_percentage',
60
+ :'reserves_released_through' => :'reserves_released_through',
61
+ :'rotating_transaction_gateway_oid' => :'rotating_transaction_gateway_oid',
62
+ :'show_ultracart_payments_verification' => :'show_ultracart_payments_verification',
63
+ :'show_ultracart_payments_verified' => :'show_ultracart_payments_verified',
64
+ :'status' => :'status',
65
+ :'supports_auth' => :'supports_auth',
66
+ :'supports_refund' => :'supports_refund',
67
+ :'third_party' => :'third_party',
68
+ :'traffic_percentage' => :'traffic_percentage',
69
+ :'warning' => :'warning',
70
+ :'wepay_account_update_uri' => :'wepay_account_update_uri',
71
+ :'wepay_console_hostname' => :'wepay_console_hostname'
72
+ }
73
+ end
74
+
75
+ # Attribute type mapping.
76
+ def self.swagger_types
77
+ {
78
+ :'cascade_code' => :'String',
79
+ :'code' => :'String',
80
+ :'delay_auto_orders' => :'String',
81
+ :'name' => :'String',
82
+ :'reserve_percentage' => :'Float',
83
+ :'reserves_released_through' => :'String',
84
+ :'rotating_transaction_gateway_oid' => :'Integer',
85
+ :'show_ultracart_payments_verification' => :'BOOLEAN',
86
+ :'show_ultracart_payments_verified' => :'BOOLEAN',
87
+ :'status' => :'String',
88
+ :'supports_auth' => :'String',
89
+ :'supports_refund' => :'String',
90
+ :'third_party' => :'String',
91
+ :'traffic_percentage' => :'Float',
92
+ :'warning' => :'String',
93
+ :'wepay_account_update_uri' => :'String',
94
+ :'wepay_console_hostname' => :'String'
95
+ }
96
+ end
97
+
98
+ # Initializes the object
99
+ # @param [Hash] attributes Model attributes in the form of hash
100
+ def initialize(attributes = {})
101
+ return unless attributes.is_a?(Hash)
102
+
103
+ # convert string to symbol for hash key
104
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
105
+
106
+ if attributes.has_key?(:'cascade_code')
107
+ self.cascade_code = attributes[:'cascade_code']
108
+ end
109
+
110
+ if attributes.has_key?(:'code')
111
+ self.code = attributes[:'code']
112
+ end
113
+
114
+ if attributes.has_key?(:'delay_auto_orders')
115
+ self.delay_auto_orders = attributes[:'delay_auto_orders']
116
+ end
117
+
118
+ if attributes.has_key?(:'name')
119
+ self.name = attributes[:'name']
120
+ end
121
+
122
+ if attributes.has_key?(:'reserve_percentage')
123
+ self.reserve_percentage = attributes[:'reserve_percentage']
124
+ end
125
+
126
+ if attributes.has_key?(:'reserves_released_through')
127
+ self.reserves_released_through = attributes[:'reserves_released_through']
128
+ end
129
+
130
+ if attributes.has_key?(:'rotating_transaction_gateway_oid')
131
+ self.rotating_transaction_gateway_oid = attributes[:'rotating_transaction_gateway_oid']
132
+ end
133
+
134
+ if attributes.has_key?(:'show_ultracart_payments_verification')
135
+ self.show_ultracart_payments_verification = attributes[:'show_ultracart_payments_verification']
136
+ end
137
+
138
+ if attributes.has_key?(:'show_ultracart_payments_verified')
139
+ self.show_ultracart_payments_verified = attributes[:'show_ultracart_payments_verified']
140
+ end
141
+
142
+ if attributes.has_key?(:'status')
143
+ self.status = attributes[:'status']
144
+ end
145
+
146
+ if attributes.has_key?(:'supports_auth')
147
+ self.supports_auth = attributes[:'supports_auth']
148
+ end
149
+
150
+ if attributes.has_key?(:'supports_refund')
151
+ self.supports_refund = attributes[:'supports_refund']
152
+ end
153
+
154
+ if attributes.has_key?(:'third_party')
155
+ self.third_party = attributes[:'third_party']
156
+ end
157
+
158
+ if attributes.has_key?(:'traffic_percentage')
159
+ self.traffic_percentage = attributes[:'traffic_percentage']
160
+ end
161
+
162
+ if attributes.has_key?(:'warning')
163
+ self.warning = attributes[:'warning']
164
+ end
165
+
166
+ if attributes.has_key?(:'wepay_account_update_uri')
167
+ self.wepay_account_update_uri = attributes[:'wepay_account_update_uri']
168
+ end
169
+
170
+ if attributes.has_key?(:'wepay_console_hostname')
171
+ self.wepay_console_hostname = attributes[:'wepay_console_hostname']
172
+ end
173
+ end
174
+
175
+ # Show invalid properties with the reasons. Usually used together with valid?
176
+ # @return Array for valid properties with the reasons
177
+ def list_invalid_properties
178
+ invalid_properties = Array.new
179
+ invalid_properties
180
+ end
181
+
182
+ # Check to see if the all the properties in the model are valid
183
+ # @return true if the model is valid
184
+ def valid?
185
+ true
186
+ end
187
+
188
+ # Checks equality by comparing each attribute.
189
+ # @param [Object] Object to be compared
190
+ def ==(o)
191
+ return true if self.equal?(o)
192
+ self.class == o.class &&
193
+ cascade_code == o.cascade_code &&
194
+ code == o.code &&
195
+ delay_auto_orders == o.delay_auto_orders &&
196
+ name == o.name &&
197
+ reserve_percentage == o.reserve_percentage &&
198
+ reserves_released_through == o.reserves_released_through &&
199
+ rotating_transaction_gateway_oid == o.rotating_transaction_gateway_oid &&
200
+ show_ultracart_payments_verification == o.show_ultracart_payments_verification &&
201
+ show_ultracart_payments_verified == o.show_ultracart_payments_verified &&
202
+ status == o.status &&
203
+ supports_auth == o.supports_auth &&
204
+ supports_refund == o.supports_refund &&
205
+ third_party == o.third_party &&
206
+ traffic_percentage == o.traffic_percentage &&
207
+ warning == o.warning &&
208
+ wepay_account_update_uri == o.wepay_account_update_uri &&
209
+ wepay_console_hostname == o.wepay_console_hostname
210
+ end
211
+
212
+ # @see the `==` method
213
+ # @param [Object] Object to be compared
214
+ def eql?(o)
215
+ self == o
216
+ end
217
+
218
+ # Calculates hash code according to all attributes.
219
+ # @return [Fixnum] Hash code
220
+ def hash
221
+ [cascade_code, code, delay_auto_orders, name, reserve_percentage, reserves_released_through, rotating_transaction_gateway_oid, show_ultracart_payments_verification, show_ultracart_payments_verified, status, supports_auth, supports_refund, third_party, traffic_percentage, warning, wepay_account_update_uri, wepay_console_hostname].hash
222
+ end
223
+
224
+ # Builds the object from hash
225
+ # @param [Hash] attributes Model attributes in the form of hash
226
+ # @return [Object] Returns the model itself
227
+ def build_from_hash(attributes)
228
+ return nil unless attributes.is_a?(Hash)
229
+ self.class.swagger_types.each_pair do |key, type|
230
+ if type =~ /\AArray<(.*)>/i
231
+ # check to ensure the input is an array given that the attribute
232
+ # is documented as an array but the input is not
233
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
234
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
235
+ end
236
+ elsif !attributes[self.class.attribute_map[key]].nil?
237
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
238
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
239
+ end
240
+
241
+ self
242
+ end
243
+
244
+ # Deserializes the data based on type
245
+ # @param string type Data type
246
+ # @param string value Value to be deserialized
247
+ # @return [Object] Deserialized data
248
+ def _deserialize(type, value)
249
+ case type.to_sym
250
+ when :DateTime
251
+ DateTime.parse(value)
252
+ when :Date
253
+ Date.parse(value)
254
+ when :String
255
+ value.to_s
256
+ when :Integer
257
+ value.to_i
258
+ when :Float
259
+ value.to_f
260
+ when :BOOLEAN
261
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
262
+ true
263
+ else
264
+ false
265
+ end
266
+ when :Object
267
+ # generic object (usually a Hash), return directly
268
+ value
269
+ when /\AArray<(?<inner_type>.+)>\z/
270
+ inner_type = Regexp.last_match[:inner_type]
271
+ value.map { |v| _deserialize(inner_type, v) }
272
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
273
+ k_type = Regexp.last_match[:k_type]
274
+ v_type = Regexp.last_match[:v_type]
275
+ {}.tap do |hash|
276
+ value.each do |k, v|
277
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
278
+ end
279
+ end
280
+ else # model
281
+ temp_model = UltracartClient.const_get(type).new
282
+ temp_model.build_from_hash(value)
283
+ end
284
+ end
285
+
286
+ # Returns the string representation of the object
287
+ # @return [String] String presentation of the object
288
+ def to_s
289
+ to_hash.to_s
290
+ end
291
+
292
+ # to_body is an alias to to_hash (backward compatibility)
293
+ # @return [Hash] Returns the object in the form of hash
294
+ def to_body
295
+ to_hash
296
+ end
297
+
298
+ # Returns the object in the form of hash
299
+ # @return [Hash] Returns the object in the form of hash
300
+ def to_hash
301
+ hash = {}
302
+ self.class.attribute_map.each_pair do |attr, param|
303
+ value = self.send(attr)
304
+ next if value.nil?
305
+ hash[param] = _to_hash(value)
306
+ end
307
+ hash
308
+ end
309
+
310
+ # Outputs non-array value in the form of hash
311
+ # For object, use to_hash. Otherwise, just return the value
312
+ # @param [Object] value Any valid value
313
+ # @return [Hash] Returns the value in the form of hash
314
+ def _to_hash(value)
315
+ if value.is_a?(Array)
316
+ value.compact.map { |v| _to_hash(v) }
317
+ elsif value.is_a?(Hash)
318
+ {}.tap do |hash|
319
+ value.each { |k, v| hash[k] = _to_hash(v) }
320
+ end
321
+ elsif value.respond_to? :to_hash
322
+ value.to_hash
323
+ else
324
+ value
325
+ end
326
+ end
327
+
328
+ end
329
+ end