Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 742 Bytes

File metadata and controls

29 lines (20 loc) · 742 Bytes

City

City of the user

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.city import City

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

# convert the object into a dict
city_dict = city_instance.to_dict()
# create an instance of City from a dict
city_form_dict = city.from_dict(city_dict)

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