Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.92 KB

WeeklyAggregatedPrice.md

File metadata and controls

49 lines (40 loc) · 1.92 KB

WeeklyAggregatedPrice

Properties

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]
commodity_name str [optional]
market_name str [optional]
price_type_name str [optional]
commodity_unit_name str [optional]
currency_name str [optional]
adm0_code int [optional]
country_iso3 str [optional]
country_name str [optional]
commodity_price float [optional]
original_frequency str [optional]
commodity_price_source_name str [optional]
commodity_price_observations int [optional]
commodity_date_month int [optional]
commodity_date_year int [optional]
commodity_price_date datetime [optional]
commodity_price_flag str [optional]

Example

from data_bridges_client.models.weekly_aggregated_price import WeeklyAggregatedPrice

# TODO update the JSON string below
json = "{}"
# create an instance of WeeklyAggregatedPrice from a JSON string
weekly_aggregated_price_instance = WeeklyAggregatedPrice.from_json(json)
# print the JSON string representation of the object
print(WeeklyAggregatedPrice.to_json())

# convert the object into a dict
weekly_aggregated_price_dict = weekly_aggregated_price_instance.to_dict()
# create an instance of WeeklyAggregatedPrice from a dict
weekly_aggregated_price_from_dict = WeeklyAggregatedPrice.from_dict(weekly_aggregated_price_dict)

[Back to Model list] [Back to API list] [Back to README]