@@ -19,6 +19,10 @@ class CreateOrderLineItemRequest
19
19
20
20
attr_accessor :vintage_year
21
21
22
+ attr_accessor :vintage_start_year
23
+
24
+ attr_accessor :vintage_end_year
25
+
22
26
attr_accessor :price
23
27
24
28
attr_accessor :currency
@@ -54,6 +58,8 @@ def self.attribute_map
54
58
{
55
59
:'project_id' => :'project_id' ,
56
60
:'vintage_year' => :'vintage_year' ,
61
+ :'vintage_start_year' => :'vintage_start_year' ,
62
+ :'vintage_end_year' => :'vintage_end_year' ,
57
63
:'price' => :'price' ,
58
64
:'currency' => :'currency' ,
59
65
:'amount' => :'amount' ,
@@ -71,6 +77,8 @@ def self.openapi_types
71
77
{
72
78
:'project_id' => :'String' ,
73
79
:'vintage_year' => :'Integer' ,
80
+ :'vintage_start_year' => :'Integer' ,
81
+ :'vintage_end_year' => :'Integer' ,
74
82
:'price' => :'Integer' ,
75
83
:'currency' => :'String' ,
76
84
:'amount' => :'Integer' ,
@@ -82,6 +90,8 @@ def self.openapi_types
82
90
def self . openapi_nullable
83
91
Set . new ( [
84
92
:'vintage_year' ,
93
+ :'vintage_start_year' ,
94
+ :'vintage_end_year' ,
85
95
:'price' ,
86
96
:'currency' ,
87
97
:'amount' ,
@@ -124,6 +134,14 @@ def initialize(attributes = {})
124
134
self . vintage_year = attributes [ :'vintage_year' ]
125
135
end
126
136
137
+ if attributes . key? ( :'vintage_start_year' )
138
+ self . vintage_start_year = attributes [ :'vintage_start_year' ]
139
+ end
140
+
141
+ if attributes . key? ( :'vintage_end_year' )
142
+ self . vintage_end_year = attributes [ :'vintage_end_year' ]
143
+ end
144
+
127
145
if attributes . key? ( :'price' )
128
146
self . price = attributes [ :'price' ]
129
147
end
@@ -153,12 +171,28 @@ def list_invalid_properties
153
171
invalid_properties . push ( 'invalid value for "vintage_year", must be greater than or equal to 1900.' )
154
172
end
155
173
174
+ if !@vintage_start_year . nil? && @vintage_start_year > 2100
175
+ invalid_properties . push ( 'invalid value for "vintage_start_year", must be smaller than or equal to 2100.' )
176
+ end
177
+
178
+ if !@vintage_start_year . nil? && @vintage_start_year < 1900
179
+ invalid_properties . push ( 'invalid value for "vintage_start_year", must be greater than or equal to 1900.' )
180
+ end
181
+
182
+ if !@vintage_end_year . nil? && @vintage_end_year > 2100
183
+ invalid_properties . push ( 'invalid value for "vintage_end_year", must be smaller than or equal to 2100.' )
184
+ end
185
+
186
+ if !@vintage_end_year . nil? && @vintage_end_year < 1900
187
+ invalid_properties . push ( 'invalid value for "vintage_end_year", must be greater than or equal to 1900.' )
188
+ end
189
+
156
190
if !@price . nil? && @price < 2
157
191
invalid_properties . push ( 'invalid value for "price", must be greater than or equal to 2.' )
158
192
end
159
193
160
- if !@amount . nil? && @amount > 100000000000
161
- invalid_properties . push ( 'invalid value for "amount", must be smaller than or equal to 100000000000 .' )
194
+ if !@amount . nil? && @amount > 100000000000000
195
+ invalid_properties . push ( 'invalid value for "amount", must be smaller than or equal to 100000000000000 .' )
162
196
end
163
197
164
198
if !@amount . nil? && @amount < 0
@@ -173,8 +207,12 @@ def list_invalid_properties
173
207
def valid?
174
208
return false if !@vintage_year . nil? && @vintage_year > 2100
175
209
return false if !@vintage_year . nil? && @vintage_year < 1900
210
+ return false if !@vintage_start_year . nil? && @vintage_start_year > 2100
211
+ return false if !@vintage_start_year . nil? && @vintage_start_year < 1900
212
+ return false if !@vintage_end_year . nil? && @vintage_end_year > 2100
213
+ return false if !@vintage_end_year . nil? && @vintage_end_year < 1900
176
214
return false if !@price . nil? && @price < 2
177
- return false if !@amount . nil? && @amount > 100000000000
215
+ return false if !@amount . nil? && @amount > 100000000000000
178
216
return false if !@amount . nil? && @amount < 0
179
217
unit_validator = EnumAttributeValidator . new ( 'String' , [ "g" , "Wh" ] )
180
218
return false unless unit_validator . valid? ( @unit )
@@ -195,6 +233,34 @@ def vintage_year=(vintage_year)
195
233
@vintage_year = vintage_year
196
234
end
197
235
236
+ # Custom attribute writer method with validation
237
+ # @param [Object] vintage_start_year Value to be assigned
238
+ def vintage_start_year = ( vintage_start_year )
239
+ if !vintage_start_year . nil? && vintage_start_year > 2100
240
+ fail ArgumentError , 'invalid value for "vintage_start_year", must be smaller than or equal to 2100.'
241
+ end
242
+
243
+ if !vintage_start_year . nil? && vintage_start_year < 1900
244
+ fail ArgumentError , 'invalid value for "vintage_start_year", must be greater than or equal to 1900.'
245
+ end
246
+
247
+ @vintage_start_year = vintage_start_year
248
+ end
249
+
250
+ # Custom attribute writer method with validation
251
+ # @param [Object] vintage_end_year Value to be assigned
252
+ def vintage_end_year = ( vintage_end_year )
253
+ if !vintage_end_year . nil? && vintage_end_year > 2100
254
+ fail ArgumentError , 'invalid value for "vintage_end_year", must be smaller than or equal to 2100.'
255
+ end
256
+
257
+ if !vintage_end_year . nil? && vintage_end_year < 1900
258
+ fail ArgumentError , 'invalid value for "vintage_end_year", must be greater than or equal to 1900.'
259
+ end
260
+
261
+ @vintage_end_year = vintage_end_year
262
+ end
263
+
198
264
# Custom attribute writer method with validation
199
265
# @param [Object] price Value to be assigned
200
266
def price = ( price )
@@ -208,8 +274,8 @@ def price=(price)
208
274
# Custom attribute writer method with validation
209
275
# @param [Object] amount Value to be assigned
210
276
def amount = ( amount )
211
- if !amount . nil? && amount > 100000000000
212
- fail ArgumentError , 'invalid value for "amount", must be smaller than or equal to 100000000000 .'
277
+ if !amount . nil? && amount > 100000000000000
278
+ fail ArgumentError , 'invalid value for "amount", must be smaller than or equal to 100000000000000 .'
213
279
end
214
280
215
281
if !amount . nil? && amount < 0
@@ -236,6 +302,8 @@ def ==(o)
236
302
self . class == o . class &&
237
303
project_id == o . project_id &&
238
304
vintage_year == o . vintage_year &&
305
+ vintage_start_year == o . vintage_start_year &&
306
+ vintage_end_year == o . vintage_end_year &&
239
307
price == o . price &&
240
308
currency == o . currency &&
241
309
amount == o . amount &&
@@ -251,7 +319,7 @@ def eql?(o)
251
319
# Calculates hash code according to all attributes.
252
320
# @return [Integer] Hash code
253
321
def hash
254
- [ project_id , vintage_year , price , currency , amount , unit ] . hash
322
+ [ project_id , vintage_year , vintage_start_year , vintage_end_year , price , currency , amount , unit ] . hash
255
323
end
256
324
257
325
# Builds the object from hash
0 commit comments