Country
Properties
Name |
Type |
Description |
Notes |
id |
str |
|
|
time_created |
datetime |
|
|
time_modified |
datetime |
|
|
owner_id |
str |
|
|
tenant_id |
str |
|
|
tenant_name |
str |
|
[optional] |
code |
str |
The country code as defined by ISO. |
|
name |
str |
The full name of the country. |
|
region |
str |
The region where the country belong to. |
|
Example
from libica.openapi.v3.models.country import Country
# TODO update the JSON string below
json = "{}"
# create an instance of Country from a JSON string
country_instance = Country.from_json(json)
# print the JSON string representation of the object
print(Country.to_json())
# convert the object into a dict
country_dict = country_instance.to_dict()
# create an instance of Country from a dict
country_from_dict = Country.from_dict(country_dict)
[Back to Model list] [Back to API list] [Back to README]