forked from patch-technology/patch-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.py
More file actions
436 lines (398 loc) · 19.9 KB
/
Copy pathproject.py
File metadata and controls
436 lines (398 loc) · 19.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
"""
Patch API V1
The core API used to integrate with Patch's service # noqa: E501
The version of the OpenAPI document: v1
Contact: [email protected]
Generated by: https://openapi-generator.tech
"""
import re # noqa: F401
import sys # noqa: F401
from patch_api.model_utils import ( # noqa: F401
ApiTypeError,
ModelComposed,
ModelNormal,
ModelSimple,
cached_property,
change_keys_js_to_python,
convert_js_args_to_python_args,
date,
datetime,
file_type,
none_type,
validate_get_composed_info,
OpenApiModel,
)
from patch_api.exceptions import ApiAttributeError
def lazy_import():
from patch_api.model.highlight import Highlight
from patch_api.model.photo import Photo
from patch_api.model.sdg import Sdg
from patch_api.model.technology_type import TechnologyType
globals()["Highlight"] = Highlight
globals()["Photo"] = Photo
globals()["Sdg"] = Sdg
globals()["TechnologyType"] = TechnologyType
class Project(ModelNormal):
"""NOTE: This class is auto generated by OpenAPI Generator.
Ref: https://openapi-generator.tech
Do not edit the class manually.
Attributes:
allowed_values (dict): The key is the tuple path to the attribute
and the for var_name this is (var_name,). The value is a dict
with a capitalized key describing the allowed value and an allowed
value. These dicts store the allowed enum values.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
discriminator_value_class_map (dict): A dict to go from the discriminator
variable value to the discriminator class name.
validations (dict): The key is the tuple path to the attribute
and the for var_name this is (var_name,). The value is a dict
that stores validations for max_length, min_length, max_items,
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
inclusive_minimum, and regex.
additional_properties_type (tuple): A tuple of classes accepted
as additional properties values.
"""
allowed_values = {
("mechanism",): {
"REMOVAL": "removal",
"AVOIDANCE": "avoidance",
},
}
validations = {}
@cached_property
def additional_properties_type():
"""
This must be a method because a model may have properties that are
of type self, this must run after the class is loaded
"""
lazy_import()
return (
bool,
date,
datetime,
dict,
float,
int,
list,
str,
none_type,
) # noqa: E501
_nullable = False
@cached_property
def openapi_types():
"""
This must be a method because a model may have properties that are
of type self, this must run after the class is loaded
Returns
openapi_types (dict): The key is attribute name
and the value is attribute type.
"""
lazy_import()
return {
"id": (str,), # noqa: E501
"production": (bool,), # noqa: E501
"name": (str,), # noqa: E501
"description": (str,), # noqa: E501
"country": (str,), # noqa: E501
"developer": (str,), # noqa: E501
"average_price_per_tonne_cents_usd": (int,), # noqa: E501
"remaining_mass_g": (int,), # noqa: E501
"technology_type": (TechnologyType,), # noqa: E501
"highlights": ([Highlight],), # noqa: E501
"type": (str,), # noqa: E501
"mechanism": (str,), # noqa: E501
"state": (
str,
none_type,
), # noqa: E501
"latitude": (
float,
none_type,
), # noqa: E501
"longitude": (
float,
none_type,
), # noqa: E501
"photos": (
[Photo],
none_type,
), # noqa: E501
"verifier": (str,), # noqa: E501
"standard": (
{str: (bool, date, datetime, dict, float, int, list, str, none_type)},
none_type,
), # noqa: E501
"sdgs": (
[Sdg],
none_type,
), # noqa: E501
"tagline": (str,), # noqa: E501
}
@cached_property
def discriminator():
return None
attribute_map = {
"id": "id", # noqa: E501
"production": "production", # noqa: E501
"name": "name", # noqa: E501
"description": "description", # noqa: E501
"country": "country", # noqa: E501
"developer": "developer", # noqa: E501
"average_price_per_tonne_cents_usd": "average_price_per_tonne_cents_usd", # noqa: E501
"remaining_mass_g": "remaining_mass_g", # noqa: E501
"technology_type": "technology_type", # noqa: E501
"highlights": "highlights", # noqa: E501
"type": "type", # noqa: E501
"mechanism": "mechanism", # noqa: E501
"state": "state", # noqa: E501
"latitude": "latitude", # noqa: E501
"longitude": "longitude", # noqa: E501
"photos": "photos", # noqa: E501
"verifier": "verifier", # noqa: E501
"standard": "standard", # noqa: E501
"sdgs": "sdgs", # noqa: E501
"tagline": "tagline", # noqa: E501
}
read_only_vars = {}
_composed_schemas = {}
@classmethod
@convert_js_args_to_python_args
def _from_openapi_data(
cls,
id,
production,
name,
description,
country,
developer,
average_price_per_tonne_cents_usd,
remaining_mass_g,
technology_type,
highlights,
*args,
**kwargs,
): # noqa: E501
"""Project - a model defined in OpenAPI
Args:
id (str): A unique uid for the record. UIDs will be prepended by pro_prod or pro_test depending on the mode it was created in.
production (bool): A boolean indicating if this project is a production or test mode project.
name (str): The name of the project.
description (str): The description of the project.
country (str): The country of origin of the project.
developer (str): The name of the project developer.
average_price_per_tonne_cents_usd (int): The average price per tonne in USD cents for carbon offsets supplied by this project.
remaining_mass_g (int): The remaining mass in grams available for purchase for this project.
technology_type (TechnologyType):
highlights ([Highlight]): An array of objects containing the highlight's slug, title, and a URL for the corresponding icon. A highlight's title is a short string that spotlights a characteristic about the project.
Keyword Args:
_check_type (bool): if True, values for parameters in openapi_types
will be type checked and a TypeError will be
raised if the wrong type is input.
Defaults to True
_path_to_item (tuple/list): This is a list of keys or values to
drill down to the model in received_data
when deserializing a response
_spec_property_naming (bool): True if the variable names in the input data
are serialized names, as specified in the OpenAPI document.
False if the variable names in the input data
are pythonic names, e.g. snake case (default)
_configuration (Configuration): the instance to use when
deserializing a file_type parameter.
If passed, type conversion is attempted
If omitted no type conversion is done.
_visited_composed_classes (tuple): This stores a tuple of
classes that we have traveled through so that
if we see that class again we will not use its
discriminator again.
When traveling through a discriminator, the
composed schema that is
is traveled through is added to this set.
For example if Animal has a discriminator
petType and we pass in "Dog", and the class Dog
allOf includes Animal, we move through Animal
once using the discriminator, and pick Dog.
Then in Dog, we will make an instance of the
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
type (str): DEPRECATED. Favor the technology_type field instead.. [optional] # noqa: E501
mechanism (str): The mechanism of the project. Either removal or avoidance.. [optional] # noqa: E501
state (str, none_type): The state where this project is located.. [optional] # noqa: E501
latitude (float, none_type): The latitude at which this project is located.. [optional] # noqa: E501
longitude (float, none_type): The longitude at which this project is located.. [optional] # noqa: E501
photos ([Photo], none_type): An array of URLs for photos of the project.. [optional] # noqa: E501
verifier (str): The name of the project verifier, when applicable. A verifier is the organization that verifies the calculations of the actual amount of greenhouse gas emissions that have been avoided or sequestered through implementation of the project.. [optional] # noqa: E501
standard ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): An object returning the Standard associated with this project, when applicable. Standards provide guidance on GHG quantification, monitoring, and reporting. Standards can include protocols/methodologies and guidance documents.. [optional] # noqa: E501
sdgs ([Sdg], none_type): An array returning the UN Sustainable Development Goals associated with this project.. [optional] # noqa: E501
tagline (str): A short description of the project.. [optional] # noqa: E501
"""
_check_type = kwargs.pop("_check_type", True)
_spec_property_naming = kwargs.pop("_spec_property_naming", False)
_path_to_item = kwargs.pop("_path_to_item", ())
_configuration = kwargs.pop("_configuration", None)
_visited_composed_classes = kwargs.pop("_visited_composed_classes", ())
self = super(OpenApiModel, cls).__new__(cls)
if args:
raise ApiTypeError(
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments."
% (
args,
self.__class__.__name__,
),
path_to_item=_path_to_item,
valid_classes=(self.__class__,),
)
self._data_store = {}
self._check_type = _check_type
self._spec_property_naming = _spec_property_naming
self._path_to_item = _path_to_item
self._configuration = _configuration
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
self.id = id
self.production = production
self.name = name
self.description = description
self.country = country
self.developer = developer
self.average_price_per_tonne_cents_usd = average_price_per_tonne_cents_usd
self.remaining_mass_g = remaining_mass_g
self.technology_type = technology_type
self.highlights = highlights
for var_name, var_value in kwargs.items():
if (
var_name not in self.attribute_map
and self._configuration is not None
and self._configuration.discard_unknown_keys
and self.additional_properties_type is None
):
# discard variable.
continue
setattr(self, var_name, var_value)
return self
required_properties = set(
[
"_data_store",
"_check_type",
"_spec_property_naming",
"_path_to_item",
"_configuration",
"_visited_composed_classes",
]
)
@convert_js_args_to_python_args
def __init__(
self,
id,
production,
name,
description,
country,
developer,
average_price_per_tonne_cents_usd,
remaining_mass_g,
technology_type,
highlights,
*args,
**kwargs,
): # noqa: E501
"""Project - a model defined in OpenAPI
Args:
id (str): A unique uid for the record. UIDs will be prepended by pro_prod or pro_test depending on the mode it was created in.
production (bool): A boolean indicating if this project is a production or test mode project.
name (str): The name of the project.
description (str): The description of the project.
country (str): The country of origin of the project.
developer (str): The name of the project developer.
average_price_per_tonne_cents_usd (int): The average price per tonne in USD cents for carbon offsets supplied by this project.
remaining_mass_g (int): The remaining mass in grams available for purchase for this project.
technology_type (TechnologyType):
highlights ([Highlight]): An array of objects containing the highlight's slug, title, and a URL for the corresponding icon. A highlight's title is a short string that spotlights a characteristic about the project.
Keyword Args:
_check_type (bool): if True, values for parameters in openapi_types
will be type checked and a TypeError will be
raised if the wrong type is input.
Defaults to True
_path_to_item (tuple/list): This is a list of keys or values to
drill down to the model in received_data
when deserializing a response
_spec_property_naming (bool): True if the variable names in the input data
are serialized names, as specified in the OpenAPI document.
False if the variable names in the input data
are pythonic names, e.g. snake case (default)
_configuration (Configuration): the instance to use when
deserializing a file_type parameter.
If passed, type conversion is attempted
If omitted no type conversion is done.
_visited_composed_classes (tuple): This stores a tuple of
classes that we have traveled through so that
if we see that class again we will not use its
discriminator again.
When traveling through a discriminator, the
composed schema that is
is traveled through is added to this set.
For example if Animal has a discriminator
petType and we pass in "Dog", and the class Dog
allOf includes Animal, we move through Animal
once using the discriminator, and pick Dog.
Then in Dog, we will make an instance of the
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
type (str): DEPRECATED. Favor the technology_type field instead.. [optional] # noqa: E501
mechanism (str): The mechanism of the project. Either removal or avoidance.. [optional] # noqa: E501
state (str, none_type): The state where this project is located.. [optional] # noqa: E501
latitude (float, none_type): The latitude at which this project is located.. [optional] # noqa: E501
longitude (float, none_type): The longitude at which this project is located.. [optional] # noqa: E501
photos ([Photo], none_type): An array of URLs for photos of the project.. [optional] # noqa: E501
verifier (str): The name of the project verifier, when applicable. A verifier is the organization that verifies the calculations of the actual amount of greenhouse gas emissions that have been avoided or sequestered through implementation of the project.. [optional] # noqa: E501
standard ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): An object returning the Standard associated with this project, when applicable. Standards provide guidance on GHG quantification, monitoring, and reporting. Standards can include protocols/methodologies and guidance documents.. [optional] # noqa: E501
sdgs ([Sdg], none_type): An array returning the UN Sustainable Development Goals associated with this project.. [optional] # noqa: E501
tagline (str): A short description of the project.. [optional] # noqa: E501
"""
_check_type = kwargs.pop("_check_type", True)
_spec_property_naming = kwargs.pop("_spec_property_naming", False)
_path_to_item = kwargs.pop("_path_to_item", ())
_configuration = kwargs.pop("_configuration", None)
_visited_composed_classes = kwargs.pop("_visited_composed_classes", ())
if args:
raise ApiTypeError(
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments."
% (
args,
self.__class__.__name__,
),
path_to_item=_path_to_item,
valid_classes=(self.__class__,),
)
self._data_store = {}
self._check_type = _check_type
self._spec_property_naming = _spec_property_naming
self._path_to_item = _path_to_item
self._configuration = _configuration
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
self.id = id
self.production = production
self.name = name
self.description = description
self.country = country
self.developer = developer
self.average_price_per_tonne_cents_usd = average_price_per_tonne_cents_usd
self.remaining_mass_g = remaining_mass_g
self.technology_type = technology_type
self.highlights = highlights
for var_name, var_value in kwargs.items():
if (
var_name not in self.attribute_map
and self._configuration is not None
and self._configuration.discard_unknown_keys
and self.additional_properties_type is None
):
# discard variable.
continue
setattr(self, var_name, var_value)
if var_name in self.read_only_vars:
raise ApiAttributeError(
f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
f"class with read only attributes."
)