Name |
Type |
Description |
Notes |
name |
str |
Country name |
[optional] |
settings_name |
str |
Country settings name |
[optional] |
iso |
str |
Country iso code |
[optional] |
fiscal_iso |
str |
Country fiscal iso code |
[optional] |
uic |
str |
Country uic |
[optional] |
from fattureincloud_python_sdk.models.detailed_country import DetailedCountry
# TODO update the JSON string below
json = "{}"
# create an instance of DetailedCountry from a JSON string
detailed_country_instance = DetailedCountry.from_json(json)
# print the JSON string representation of the object
print(DetailedCountry.to_json())
# convert the object into a dict
detailed_country_dict = detailed_country_instance.to_dict()
# create an instance of DetailedCountry from a dict
detailed_country_from_dict = DetailedCountry.from_dict(detailed_country_dict)
[Back to Model list] [Back to API list] [Back to README]