Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1023 Bytes

File metadata and controls

30 lines (21 loc) · 1023 Bytes

DetailedCountryField

Properties

Name Type Description Notes
code CountryCodeEnum
name str

Example

from authentik_client.models.detailed_country_field import DetailedCountryField

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

# convert the object into a dict
detailed_country_field_dict = detailed_country_field_instance.to_dict()
# create an instance of DetailedCountryField from a dict
detailed_country_field_from_dict = DetailedCountryField.from_dict(detailed_country_field_dict)

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