Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1004 Bytes

ListCountriesResponse.md

File metadata and controls

30 lines (20 loc) · 1004 Bytes

ListCountriesResponse

Properties

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

Example

from fattureincloud_python_sdk.models.list_countries_response import ListCountriesResponse

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

# convert the object into a dict
list_countries_response_dict = list_countries_response_instance.to_dict()
# create an instance of ListCountriesResponse from a dict
list_countries_response_from_dict = ListCountriesResponse.from_dict(list_countries_response_dict)

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