@@ -23,13 +23,38 @@ class CreateOrderRequest
23
23
24
24
attr_accessor :metadata
25
25
26
+ attr_accessor :state
27
+
28
+ class EnumAttributeValidator
29
+ attr_reader :datatype
30
+ attr_reader :allowable_values
31
+
32
+ def initialize ( datatype , allowable_values )
33
+ @allowable_values = allowable_values . map do |value |
34
+ case datatype . to_s
35
+ when /Integer/i
36
+ value . to_i
37
+ when /Float/i
38
+ value . to_f
39
+ else
40
+ value
41
+ end
42
+ end
43
+ end
44
+
45
+ def valid? ( value )
46
+ !value || allowable_values . include? ( value )
47
+ end
48
+ end
49
+
26
50
# Attribute mapping from ruby-style variable name to JSON key.
27
51
def self . attribute_map
28
52
{
29
53
:'mass_g' => :'mass_g' ,
30
54
:'total_price_cents_usd' => :'total_price_cents_usd' ,
31
55
:'project_id' => :'project_id' ,
32
- :'metadata' => :'metadata'
56
+ :'metadata' => :'metadata' ,
57
+ :'state' => :'state'
33
58
}
34
59
end
35
60
@@ -44,7 +69,8 @@ def self.openapi_types
44
69
:'mass_g' => :'Integer' ,
45
70
:'total_price_cents_usd' => :'Integer' ,
46
71
:'project_id' => :'String' ,
47
- :'metadata' => :'Object'
72
+ :'metadata' => :'Object' ,
73
+ :'state' => :'String'
48
74
}
49
75
end
50
76
@@ -96,6 +122,10 @@ def initialize(attributes = {})
96
122
if attributes . key? ( :'metadata' )
97
123
self . metadata = attributes [ :'metadata' ]
98
124
end
125
+
126
+ if attributes . key? ( :'state' )
127
+ self . state = attributes [ :'state' ]
128
+ end
99
129
end
100
130
101
131
# Show invalid properties with the reasons. Usually used together with valid?
@@ -123,6 +153,8 @@ def valid?
123
153
return false if !@mass_g . nil? && @mass_g > 100000000000
124
154
return false if !@mass_g . nil? && @mass_g < 0
125
155
return false if !@total_price_cents_usd . nil? && @total_price_cents_usd < 1
156
+ state_validator = EnumAttributeValidator . new ( 'String' , [ "draft" , "placed" ] )
157
+ return false unless state_validator . valid? ( @state )
126
158
true
127
159
end
128
160
@@ -150,6 +182,16 @@ def total_price_cents_usd=(total_price_cents_usd)
150
182
@total_price_cents_usd = total_price_cents_usd
151
183
end
152
184
185
+ # Custom attribute writer method checking allowed values (enum).
186
+ # @param [Object] state Object to be assigned
187
+ def state = ( state )
188
+ validator = EnumAttributeValidator . new ( 'String' , [ "draft" , "placed" ] )
189
+ unless validator . valid? ( state )
190
+ fail ArgumentError , "invalid value for \" state\" , must be one of #{ validator . allowable_values } ."
191
+ end
192
+ @state = state
193
+ end
194
+
153
195
# Checks equality by comparing each attribute.
154
196
# @param [Object] Object to be compared
155
197
def ==( o )
@@ -158,7 +200,8 @@ def ==(o)
158
200
mass_g == o . mass_g &&
159
201
total_price_cents_usd == o . total_price_cents_usd &&
160
202
project_id == o . project_id &&
161
- metadata == o . metadata
203
+ metadata == o . metadata &&
204
+ state == o . state
162
205
end
163
206
164
207
# @see the `==` method
@@ -170,7 +213,7 @@ def eql?(o)
170
213
# Calculates hash code according to all attributes.
171
214
# @return [Integer] Hash code
172
215
def hash
173
- [ mass_g , total_price_cents_usd , project_id , metadata ] . hash
216
+ [ mass_g , total_price_cents_usd , project_id , metadata , state ] . hash
174
217
end
175
218
176
219
# Builds the object from hash
0 commit comments