| Name |
Type |
Description |
Notes |
| commodity_id |
int |
|
[optional] |
| market_id |
int |
|
[optional] |
| price_type_id |
int |
|
[optional] |
| commodity_unit_id |
int |
|
[optional] |
| currency_id |
int |
|
[optional] |
| adm0_code |
int |
|
[optional] |
| country_name |
str |
|
[optional] |
| commodity_price_date_year |
int |
|
[optional] |
| commodity_price_date_month |
int |
|
[optional] |
| commodity_price_date_week |
int |
|
[optional] |
| commodity_price_date |
datetime |
|
[optional] |
| commodity_name |
str |
|
[optional] |
| market_name |
str |
|
[optional] |
| price_type_name |
str |
|
[optional] |
| commodity_unit_name |
str |
|
[optional] |
| currency_name |
str |
|
[optional] |
| analysis_value_estimated_price |
float |
|
[optional] |
| analysis_value_pewi_value |
float |
|
[optional] |
| analysis_value_price_flag |
str |
|
[optional] |
from data_bridges_client.models.extended_alps_value_dto import ExtendedAlpsValueDto
# TODO update the JSON string below
json = "{}"
# create an instance of ExtendedAlpsValueDto from a JSON string
extended_alps_value_dto_instance = ExtendedAlpsValueDto.from_json(json)
# print the JSON string representation of the object
print(ExtendedAlpsValueDto.to_json())
# convert the object into a dict
extended_alps_value_dto_dict = extended_alps_value_dto_instance.to_dict()
# create an instance of ExtendedAlpsValueDto from a dict
extended_alps_value_dto_from_dict = ExtendedAlpsValueDto.from_dict(extended_alps_value_dto_dict)
[Back to Model list] [Back to API list] [Back to README]