| Name |
Type |
Description |
Notes |
| var_date |
str |
|
[optional] |
| region_name |
str |
|
[optional] |
| total_value |
float |
|
[optional] |
| number_of_countries |
int |
|
[optional] |
| comment |
str |
|
[optional] |
from data_bridges_client.models.global_outlook_api_dto import GlobalOutlookApiDto
# TODO update the JSON string below
json = "{}"
# create an instance of GlobalOutlookApiDto from a JSON string
global_outlook_api_dto_instance = GlobalOutlookApiDto.from_json(json)
# print the JSON string representation of the object
print(GlobalOutlookApiDto.to_json())
# convert the object into a dict
global_outlook_api_dto_dict = global_outlook_api_dto_instance.to_dict()
# create an instance of GlobalOutlookApiDto from a dict
global_outlook_api_dto_from_dict = GlobalOutlookApiDto.from_dict(global_outlook_api_dto_dict)
[Back to Model list] [Back to API list] [Back to README]