Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 885 Bytes

City.md

File metadata and controls

31 lines (22 loc) · 885 Bytes

City

Properties

Name Type Description Notes
postal_code str City postal code [optional]
city str City name [optional]
province str City province [optional]

Example

from fattureincloud_python_sdk.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_from_dict = City.from_dict(city_dict)

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