Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

File metadata and controls

32 lines (23 loc) · 1.18 KB

GlobalOutlookCountryApiDto

Properties

Name Type Description Notes
var_date str [optional]
country_office_iso3 str [optional]
total_value float [optional]
comment str [optional]

Example

from data_bridges_client.models.global_outlook_country_api_dto import GlobalOutlookCountryApiDto

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

# convert the object into a dict
global_outlook_country_api_dto_dict = global_outlook_country_api_dto_instance.to_dict()
# create an instance of GlobalOutlookCountryApiDto from a dict
global_outlook_country_api_dto_from_dict = GlobalOutlookCountryApiDto.from_dict(global_outlook_country_api_dto_dict)

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