Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.31 KB

EconomicIndicatorProperty.md

File metadata and controls

36 lines (27 loc) · 1.31 KB

EconomicIndicatorProperty

Properties

Name Type Description Notes
id int [optional]
name str [optional]
frequency str [optional]
unit str [optional]
data_source str [optional]
country_iso3 str [optional]
latest_value float [optional]
latest_value_date datetime [optional]

Example

from data_bridges_client.models.economic_indicator_property import EconomicIndicatorProperty

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

# convert the object into a dict
economic_indicator_property_dict = economic_indicator_property_instance.to_dict()
# create an instance of EconomicIndicatorProperty from a dict
economic_indicator_property_from_dict = EconomicIndicatorProperty.from_dict(economic_indicator_property_dict)

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