ultracart_api 4.1.152 → 4.1.154
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +15 -3
- data/docs/SfvbApi.md +229 -3
- data/docs/SfvbElement.md +2 -0
- data/docs/SfvbElementSchemaResponse.md +3 -1
- data/docs/SfvbPageAttribute.md +32 -0
- data/docs/SfvbPageAttributeUpdate.md +22 -0
- data/docs/SfvbPageAttributeUpdateRequest.md +18 -0
- data/docs/SfvbPageMultimedia.md +30 -0
- data/docs/SfvbPageMultimediaRequest.md +24 -0
- data/docs/SfvbPageResponse.md +22 -0
- data/docs/SfvbThemeJobResponse.md +1 -1
- data/lib/ultracart_api/api/sfvb_api.rb +316 -2
- data/lib/ultracart_api/models/sfvb_element.rb +11 -1
- data/lib/ultracart_api/models/sfvb_element_schema_response.rb +12 -2
- data/lib/ultracart_api/models/sfvb_page_attribute.rb +324 -0
- data/lib/ultracart_api/models/sfvb_page_attribute_update.rb +274 -0
- data/lib/ultracart_api/models/sfvb_page_attribute_update_request.rb +222 -0
- data/lib/ultracart_api/models/sfvb_page_multimedia.rb +280 -0
- data/lib/ultracart_api/models/sfvb_page_multimedia_request.rb +250 -0
- data/lib/ultracart_api/models/sfvb_page_response.rb +244 -0
- data/lib/ultracart_api/models/sfvb_theme_job_response.rb +1 -1
- data/lib/ultracart_api/version.rb +1 -1
- data/lib/ultracart_api.rb +6 -0
- metadata +14 -2
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#UltraCart Rest API V2
|
|
3
|
+
|
|
4
|
+
#UltraCart REST API Version 2
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 2.0.0
|
|
7
|
+
Contact: support@ultracart.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.0.1-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'date'
|
|
14
|
+
require 'time'
|
|
15
|
+
|
|
16
|
+
module UltracartClient
|
|
17
|
+
class SfvbPageAttribute
|
|
18
|
+
# True when the active theme marks this attribute as on its way out. Prefer not to build on it.
|
|
19
|
+
attr_accessor :deprecated
|
|
20
|
+
|
|
21
|
+
# Attribute name, as the template's uc page-attribute directive spells it. Compare case insensitively. This is the value pageAttributeName refers to.
|
|
22
|
+
attr_accessor :name
|
|
23
|
+
|
|
24
|
+
# What kind of attribute this is, taken from the template that declares it rather than from the stored row. orphan means no template declares it. reserved covers the page SEO fields.
|
|
25
|
+
attr_accessor :type
|
|
26
|
+
|
|
27
|
+
# True when no template references this name. Writing such a name is allowed, but if you did not mean to create one this is a misspelling and nothing on the page will show it.
|
|
28
|
+
attr_accessor :undeclared
|
|
29
|
+
|
|
30
|
+
# The other themes that declare this attribute, when the active theme does not.
|
|
31
|
+
attr_accessor :used_by
|
|
32
|
+
|
|
33
|
+
# True when a template in the active theme declares this attribute.
|
|
34
|
+
attr_accessor :used_by_current_theme
|
|
35
|
+
|
|
36
|
+
# The stored value. Empty when a template declares the attribute and nothing has set it.
|
|
37
|
+
attr_accessor :value
|
|
38
|
+
|
|
39
|
+
# True when this API will change the value. List, slider, item set, page collection and video list values are structured documents carrying their own translation references and derived data, so they are shown here but must be edited in the page editor.
|
|
40
|
+
attr_accessor :writable
|
|
41
|
+
|
|
42
|
+
class EnumAttributeValidator
|
|
43
|
+
attr_reader :datatype
|
|
44
|
+
attr_reader :allowable_values
|
|
45
|
+
|
|
46
|
+
def initialize(datatype, allowable_values)
|
|
47
|
+
@allowable_values = allowable_values.map do |value|
|
|
48
|
+
case datatype.to_s
|
|
49
|
+
when /Integer/i
|
|
50
|
+
value.to_i
|
|
51
|
+
when /Float/i
|
|
52
|
+
value.to_f
|
|
53
|
+
else
|
|
54
|
+
value
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
def valid?(value)
|
|
60
|
+
!value || allowable_values.include?(value)
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
65
|
+
def self.attribute_map
|
|
66
|
+
{
|
|
67
|
+
:'deprecated' => :'deprecated',
|
|
68
|
+
:'name' => :'name',
|
|
69
|
+
:'type' => :'type',
|
|
70
|
+
:'undeclared' => :'undeclared',
|
|
71
|
+
:'used_by' => :'used_by',
|
|
72
|
+
:'used_by_current_theme' => :'used_by_current_theme',
|
|
73
|
+
:'value' => :'value',
|
|
74
|
+
:'writable' => :'writable'
|
|
75
|
+
}
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
# Returns all the JSON keys this model knows about
|
|
79
|
+
def self.acceptable_attributes
|
|
80
|
+
attribute_map.values
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
# Attribute type mapping.
|
|
84
|
+
def self.openapi_types
|
|
85
|
+
{
|
|
86
|
+
:'deprecated' => :'Boolean',
|
|
87
|
+
:'name' => :'String',
|
|
88
|
+
:'type' => :'String',
|
|
89
|
+
:'undeclared' => :'Boolean',
|
|
90
|
+
:'used_by' => :'String',
|
|
91
|
+
:'used_by_current_theme' => :'Boolean',
|
|
92
|
+
:'value' => :'String',
|
|
93
|
+
:'writable' => :'Boolean'
|
|
94
|
+
}
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
# List of attributes with nullable: true
|
|
98
|
+
def self.openapi_nullable
|
|
99
|
+
Set.new([
|
|
100
|
+
])
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
# Initializes the object
|
|
104
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
105
|
+
def initialize(attributes = {})
|
|
106
|
+
if (!attributes.is_a?(Hash))
|
|
107
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `UltracartClient::SfvbPageAttribute` initialize method"
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
111
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
112
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
113
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `UltracartClient::SfvbPageAttribute`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
114
|
+
end
|
|
115
|
+
h[k.to_sym] = v
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
if attributes.key?(:'deprecated')
|
|
119
|
+
self.deprecated = attributes[:'deprecated']
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
if attributes.key?(:'name')
|
|
123
|
+
self.name = attributes[:'name']
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
if attributes.key?(:'type')
|
|
127
|
+
self.type = attributes[:'type']
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
if attributes.key?(:'undeclared')
|
|
131
|
+
self.undeclared = attributes[:'undeclared']
|
|
132
|
+
end
|
|
133
|
+
|
|
134
|
+
if attributes.key?(:'used_by')
|
|
135
|
+
self.used_by = attributes[:'used_by']
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
if attributes.key?(:'used_by_current_theme')
|
|
139
|
+
self.used_by_current_theme = attributes[:'used_by_current_theme']
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
if attributes.key?(:'value')
|
|
143
|
+
self.value = attributes[:'value']
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
if attributes.key?(:'writable')
|
|
147
|
+
self.writable = attributes[:'writable']
|
|
148
|
+
end
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
152
|
+
# @return Array for valid properties with the reasons
|
|
153
|
+
def list_invalid_properties
|
|
154
|
+
invalid_properties = Array.new
|
|
155
|
+
invalid_properties
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
# Check to see if the all the properties in the model are valid
|
|
159
|
+
# @return true if the model is valid
|
|
160
|
+
def valid?
|
|
161
|
+
type_validator = EnumAttributeValidator.new('String', ["string", "color", "rgba", "boolean", "integer", "html", "orphan", "multiline", "reserved", "itemset", "slider", "simplelist", "definitionlist", "pagecollection", "font", "videolist", "mailinglist"])
|
|
162
|
+
return false unless type_validator.valid?(@type)
|
|
163
|
+
true
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
# Custom attribute writer method checking allowed values (enum).
|
|
167
|
+
# @param [Object] type Object to be assigned
|
|
168
|
+
def type=(type)
|
|
169
|
+
validator = EnumAttributeValidator.new('String', ["string", "color", "rgba", "boolean", "integer", "html", "orphan", "multiline", "reserved", "itemset", "slider", "simplelist", "definitionlist", "pagecollection", "font", "videolist", "mailinglist"])
|
|
170
|
+
unless validator.valid?(type)
|
|
171
|
+
fail ArgumentError, "invalid value for \"type\", must be one of #{validator.allowable_values}."
|
|
172
|
+
end
|
|
173
|
+
@type = type
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
# Checks equality by comparing each attribute.
|
|
177
|
+
# @param [Object] Object to be compared
|
|
178
|
+
def ==(o)
|
|
179
|
+
return true if self.equal?(o)
|
|
180
|
+
self.class == o.class &&
|
|
181
|
+
deprecated == o.deprecated &&
|
|
182
|
+
name == o.name &&
|
|
183
|
+
type == o.type &&
|
|
184
|
+
undeclared == o.undeclared &&
|
|
185
|
+
used_by == o.used_by &&
|
|
186
|
+
used_by_current_theme == o.used_by_current_theme &&
|
|
187
|
+
value == o.value &&
|
|
188
|
+
writable == o.writable
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
# @see the `==` method
|
|
192
|
+
# @param [Object] Object to be compared
|
|
193
|
+
def eql?(o)
|
|
194
|
+
self == o
|
|
195
|
+
end
|
|
196
|
+
|
|
197
|
+
# Calculates hash code according to all attributes.
|
|
198
|
+
# @return [Integer] Hash code
|
|
199
|
+
def hash
|
|
200
|
+
[deprecated, name, type, undeclared, used_by, used_by_current_theme, value, writable].hash
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
# Builds the object from hash
|
|
204
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
205
|
+
# @return [Object] Returns the model itself
|
|
206
|
+
def self.build_from_hash(attributes)
|
|
207
|
+
new.build_from_hash(attributes)
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
# Builds the object from hash
|
|
211
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
212
|
+
# @return [Object] Returns the model itself
|
|
213
|
+
def build_from_hash(attributes)
|
|
214
|
+
return nil unless attributes.is_a?(Hash)
|
|
215
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
216
|
+
self.class.openapi_types.each_pair do |key, type|
|
|
217
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
|
218
|
+
self.send("#{key}=", nil)
|
|
219
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
220
|
+
# check to ensure the input is an array given that the attribute
|
|
221
|
+
# is documented as an array but the input is not
|
|
222
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
223
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
224
|
+
end
|
|
225
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
226
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
227
|
+
end
|
|
228
|
+
end
|
|
229
|
+
|
|
230
|
+
self
|
|
231
|
+
end
|
|
232
|
+
|
|
233
|
+
# Deserializes the data based on type
|
|
234
|
+
# @param string type Data type
|
|
235
|
+
# @param string value Value to be deserialized
|
|
236
|
+
# @return [Object] Deserialized data
|
|
237
|
+
def _deserialize(type, value)
|
|
238
|
+
case type.to_sym
|
|
239
|
+
when :Time
|
|
240
|
+
Time.parse(value)
|
|
241
|
+
when :Date
|
|
242
|
+
Date.parse(value)
|
|
243
|
+
when :String
|
|
244
|
+
value.to_s
|
|
245
|
+
when :Integer
|
|
246
|
+
value.to_i
|
|
247
|
+
when :Float
|
|
248
|
+
value.to_f
|
|
249
|
+
when :Boolean
|
|
250
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
251
|
+
true
|
|
252
|
+
else
|
|
253
|
+
false
|
|
254
|
+
end
|
|
255
|
+
when :Object
|
|
256
|
+
# generic object (usually a Hash), return directly
|
|
257
|
+
value
|
|
258
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
259
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
260
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
261
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
262
|
+
k_type = Regexp.last_match[:k_type]
|
|
263
|
+
v_type = Regexp.last_match[:v_type]
|
|
264
|
+
{}.tap do |hash|
|
|
265
|
+
value.each do |k, v|
|
|
266
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
267
|
+
end
|
|
268
|
+
end
|
|
269
|
+
else # model
|
|
270
|
+
# models (e.g. Pet) or oneOf
|
|
271
|
+
klass = UltracartClient.const_get(type)
|
|
272
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
273
|
+
end
|
|
274
|
+
end
|
|
275
|
+
|
|
276
|
+
# Returns the string representation of the object
|
|
277
|
+
# @return [String] String presentation of the object
|
|
278
|
+
def to_s
|
|
279
|
+
to_hash.to_s
|
|
280
|
+
end
|
|
281
|
+
|
|
282
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
283
|
+
# @return [Hash] Returns the object in the form of hash
|
|
284
|
+
def to_body
|
|
285
|
+
to_hash
|
|
286
|
+
end
|
|
287
|
+
|
|
288
|
+
# Returns the object in the form of hash
|
|
289
|
+
# @return [Hash] Returns the object in the form of hash
|
|
290
|
+
def to_hash
|
|
291
|
+
hash = {}
|
|
292
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
293
|
+
value = self.send(attr)
|
|
294
|
+
if value.nil?
|
|
295
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
296
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
297
|
+
end
|
|
298
|
+
|
|
299
|
+
hash[param] = _to_hash(value)
|
|
300
|
+
end
|
|
301
|
+
hash
|
|
302
|
+
end
|
|
303
|
+
|
|
304
|
+
# Outputs non-array value in the form of hash
|
|
305
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
306
|
+
# @param [Object] value Any valid value
|
|
307
|
+
# @return [Hash] Returns the value in the form of hash
|
|
308
|
+
def _to_hash(value)
|
|
309
|
+
if value.is_a?(Array)
|
|
310
|
+
value.compact.map { |v| _to_hash(v) }
|
|
311
|
+
elsif value.is_a?(Hash)
|
|
312
|
+
{}.tap do |hash|
|
|
313
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
314
|
+
end
|
|
315
|
+
elsif value.respond_to? :to_hash
|
|
316
|
+
value.to_hash
|
|
317
|
+
else
|
|
318
|
+
value
|
|
319
|
+
end
|
|
320
|
+
end
|
|
321
|
+
|
|
322
|
+
end
|
|
323
|
+
|
|
324
|
+
end
|
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#UltraCart Rest API V2
|
|
3
|
+
|
|
4
|
+
#UltraCart REST API Version 2
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 2.0.0
|
|
7
|
+
Contact: support@ultracart.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.0.1-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'date'
|
|
14
|
+
require 'time'
|
|
15
|
+
|
|
16
|
+
module UltracartClient
|
|
17
|
+
class SfvbPageAttributeUpdate
|
|
18
|
+
# Attribute name. Matched without regard to case against what the page already has, so you do not have to reproduce the exact casing. A name nothing matches creates a new attribute.
|
|
19
|
+
attr_accessor :name
|
|
20
|
+
|
|
21
|
+
# Only consulted when creating an attribute no template declares. For a declared attribute the template's type always wins, because the templates decide it and not the caller.
|
|
22
|
+
attr_accessor :type
|
|
23
|
+
|
|
24
|
+
# The value to store. An empty string clears it. For html the markup is stored as given and rendered as given. For boolean send the text true or false.
|
|
25
|
+
attr_accessor :value
|
|
26
|
+
|
|
27
|
+
class EnumAttributeValidator
|
|
28
|
+
attr_reader :datatype
|
|
29
|
+
attr_reader :allowable_values
|
|
30
|
+
|
|
31
|
+
def initialize(datatype, allowable_values)
|
|
32
|
+
@allowable_values = allowable_values.map do |value|
|
|
33
|
+
case datatype.to_s
|
|
34
|
+
when /Integer/i
|
|
35
|
+
value.to_i
|
|
36
|
+
when /Float/i
|
|
37
|
+
value.to_f
|
|
38
|
+
else
|
|
39
|
+
value
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def valid?(value)
|
|
45
|
+
!value || allowable_values.include?(value)
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
50
|
+
def self.attribute_map
|
|
51
|
+
{
|
|
52
|
+
:'name' => :'name',
|
|
53
|
+
:'type' => :'type',
|
|
54
|
+
:'value' => :'value'
|
|
55
|
+
}
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# Returns all the JSON keys this model knows about
|
|
59
|
+
def self.acceptable_attributes
|
|
60
|
+
attribute_map.values
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
# Attribute type mapping.
|
|
64
|
+
def self.openapi_types
|
|
65
|
+
{
|
|
66
|
+
:'name' => :'String',
|
|
67
|
+
:'type' => :'String',
|
|
68
|
+
:'value' => :'String'
|
|
69
|
+
}
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
# List of attributes with nullable: true
|
|
73
|
+
def self.openapi_nullable
|
|
74
|
+
Set.new([
|
|
75
|
+
])
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
# Initializes the object
|
|
79
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
80
|
+
def initialize(attributes = {})
|
|
81
|
+
if (!attributes.is_a?(Hash))
|
|
82
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `UltracartClient::SfvbPageAttributeUpdate` initialize method"
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
86
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
87
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
88
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `UltracartClient::SfvbPageAttributeUpdate`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
89
|
+
end
|
|
90
|
+
h[k.to_sym] = v
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
if attributes.key?(:'name')
|
|
94
|
+
self.name = attributes[:'name']
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
if attributes.key?(:'type')
|
|
98
|
+
self.type = attributes[:'type']
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
if attributes.key?(:'value')
|
|
102
|
+
self.value = attributes[:'value']
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
107
|
+
# @return Array for valid properties with the reasons
|
|
108
|
+
def list_invalid_properties
|
|
109
|
+
invalid_properties = Array.new
|
|
110
|
+
invalid_properties
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
# Check to see if the all the properties in the model are valid
|
|
114
|
+
# @return true if the model is valid
|
|
115
|
+
def valid?
|
|
116
|
+
type_validator = EnumAttributeValidator.new('String', ["string", "multiline", "html", "boolean", "integer", "color", "rgba"])
|
|
117
|
+
return false unless type_validator.valid?(@type)
|
|
118
|
+
true
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
# Custom attribute writer method checking allowed values (enum).
|
|
122
|
+
# @param [Object] type Object to be assigned
|
|
123
|
+
def type=(type)
|
|
124
|
+
validator = EnumAttributeValidator.new('String', ["string", "multiline", "html", "boolean", "integer", "color", "rgba"])
|
|
125
|
+
unless validator.valid?(type)
|
|
126
|
+
fail ArgumentError, "invalid value for \"type\", must be one of #{validator.allowable_values}."
|
|
127
|
+
end
|
|
128
|
+
@type = type
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
# Checks equality by comparing each attribute.
|
|
132
|
+
# @param [Object] Object to be compared
|
|
133
|
+
def ==(o)
|
|
134
|
+
return true if self.equal?(o)
|
|
135
|
+
self.class == o.class &&
|
|
136
|
+
name == o.name &&
|
|
137
|
+
type == o.type &&
|
|
138
|
+
value == o.value
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
# @see the `==` method
|
|
142
|
+
# @param [Object] Object to be compared
|
|
143
|
+
def eql?(o)
|
|
144
|
+
self == o
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
# Calculates hash code according to all attributes.
|
|
148
|
+
# @return [Integer] Hash code
|
|
149
|
+
def hash
|
|
150
|
+
[name, type, value].hash
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
# Builds the object from hash
|
|
154
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
155
|
+
# @return [Object] Returns the model itself
|
|
156
|
+
def self.build_from_hash(attributes)
|
|
157
|
+
new.build_from_hash(attributes)
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
# Builds the object from hash
|
|
161
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
162
|
+
# @return [Object] Returns the model itself
|
|
163
|
+
def build_from_hash(attributes)
|
|
164
|
+
return nil unless attributes.is_a?(Hash)
|
|
165
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
166
|
+
self.class.openapi_types.each_pair do |key, type|
|
|
167
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
|
168
|
+
self.send("#{key}=", nil)
|
|
169
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
170
|
+
# check to ensure the input is an array given that the attribute
|
|
171
|
+
# is documented as an array but the input is not
|
|
172
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
173
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
174
|
+
end
|
|
175
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
176
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
177
|
+
end
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
self
|
|
181
|
+
end
|
|
182
|
+
|
|
183
|
+
# Deserializes the data based on type
|
|
184
|
+
# @param string type Data type
|
|
185
|
+
# @param string value Value to be deserialized
|
|
186
|
+
# @return [Object] Deserialized data
|
|
187
|
+
def _deserialize(type, value)
|
|
188
|
+
case type.to_sym
|
|
189
|
+
when :Time
|
|
190
|
+
Time.parse(value)
|
|
191
|
+
when :Date
|
|
192
|
+
Date.parse(value)
|
|
193
|
+
when :String
|
|
194
|
+
value.to_s
|
|
195
|
+
when :Integer
|
|
196
|
+
value.to_i
|
|
197
|
+
when :Float
|
|
198
|
+
value.to_f
|
|
199
|
+
when :Boolean
|
|
200
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
201
|
+
true
|
|
202
|
+
else
|
|
203
|
+
false
|
|
204
|
+
end
|
|
205
|
+
when :Object
|
|
206
|
+
# generic object (usually a Hash), return directly
|
|
207
|
+
value
|
|
208
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
209
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
210
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
211
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
212
|
+
k_type = Regexp.last_match[:k_type]
|
|
213
|
+
v_type = Regexp.last_match[:v_type]
|
|
214
|
+
{}.tap do |hash|
|
|
215
|
+
value.each do |k, v|
|
|
216
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
217
|
+
end
|
|
218
|
+
end
|
|
219
|
+
else # model
|
|
220
|
+
# models (e.g. Pet) or oneOf
|
|
221
|
+
klass = UltracartClient.const_get(type)
|
|
222
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
223
|
+
end
|
|
224
|
+
end
|
|
225
|
+
|
|
226
|
+
# Returns the string representation of the object
|
|
227
|
+
# @return [String] String presentation of the object
|
|
228
|
+
def to_s
|
|
229
|
+
to_hash.to_s
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
233
|
+
# @return [Hash] Returns the object in the form of hash
|
|
234
|
+
def to_body
|
|
235
|
+
to_hash
|
|
236
|
+
end
|
|
237
|
+
|
|
238
|
+
# Returns the object in the form of hash
|
|
239
|
+
# @return [Hash] Returns the object in the form of hash
|
|
240
|
+
def to_hash
|
|
241
|
+
hash = {}
|
|
242
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
243
|
+
value = self.send(attr)
|
|
244
|
+
if value.nil?
|
|
245
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
246
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
247
|
+
end
|
|
248
|
+
|
|
249
|
+
hash[param] = _to_hash(value)
|
|
250
|
+
end
|
|
251
|
+
hash
|
|
252
|
+
end
|
|
253
|
+
|
|
254
|
+
# Outputs non-array value in the form of hash
|
|
255
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
256
|
+
# @param [Object] value Any valid value
|
|
257
|
+
# @return [Hash] Returns the value in the form of hash
|
|
258
|
+
def _to_hash(value)
|
|
259
|
+
if value.is_a?(Array)
|
|
260
|
+
value.compact.map { |v| _to_hash(v) }
|
|
261
|
+
elsif value.is_a?(Hash)
|
|
262
|
+
{}.tap do |hash|
|
|
263
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
264
|
+
end
|
|
265
|
+
elsif value.respond_to? :to_hash
|
|
266
|
+
value.to_hash
|
|
267
|
+
else
|
|
268
|
+
value
|
|
269
|
+
end
|
|
270
|
+
end
|
|
271
|
+
|
|
272
|
+
end
|
|
273
|
+
|
|
274
|
+
end
|