Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 977 Bytes

ListCitiesResponse.md

File metadata and controls

29 lines (20 loc) · 977 Bytes

ListCitiesResponse

Properties

Name Type Description Notes
data List[City] [optional]

Example

from fattureincloud_python_sdk.models.list_cities_response import ListCitiesResponse

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

# convert the object into a dict
list_cities_response_dict = list_cities_response_instance.to_dict()
# create an instance of ListCitiesResponse from a dict
list_cities_response_form_dict = list_cities_response.from_dict(list_cities_response_dict)

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