Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.12 KB

ListDetailedCountriesResponse.md

File metadata and controls

28 lines (20 loc) · 1.12 KB

ListDetailedCountriesResponse

Properties

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

Example

from fattureincloud_python_sdk.models.list_detailed_countries_response import ListDetailedCountriesResponse

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

# convert the object into a dict
list_detailed_countries_response_dict = list_detailed_countries_response_instance.to_dict()
# create an instance of ListDetailedCountriesResponse from a dict
list_detailed_countries_response_form_dict = list_detailed_countries_response.from_dict(list_detailed_countries_response_dict)

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