Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 952 Bytes

File metadata and controls

30 lines (21 loc) · 952 Bytes

DetailedCountry

Properties

Name Type Description Notes
code CountryCodeEnum
name str

Example

from authentik_client.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]