Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

GorpRegionalApiDto.md

File metadata and controls

33 lines (24 loc) · 1.13 KB

GorpRegionalApiDto

Properties

Name Type Description Notes
gorp_date str [optional]
gorp_region_name str [optional]
gorp_total_value float [optional]
number_of_countries int [optional]
gorp_comment str [optional]

Example

from data_bridges_client.models.gorp_regional_api_dto import GorpRegionalApiDto

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

# convert the object into a dict
gorp_regional_api_dto_dict = gorp_regional_api_dto_instance.to_dict()
# create an instance of GorpRegionalApiDto from a dict
gorp_regional_api_dto_from_dict = GorpRegionalApiDto.from_dict(gorp_regional_api_dto_dict)

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