Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

LocationOutputBody

Properties

Name Type Description Notes
country str Country name
country_code str ISO 3166-1 alpha-2 country code
currency str Currency code for this location

Example

from revengai.models.location_output_body import LocationOutputBody

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

# convert the object into a dict
location_output_body_dict = location_output_body_instance.to_dict()
# create an instance of LocationOutputBody from a dict
location_output_body_from_dict = LocationOutputBody.from_dict(location_output_body_dict)

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