Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 784 Bytes

Country.md

File metadata and controls

29 lines (20 loc) · 784 Bytes

Country

Country of the user

Properties

Name Type Description Notes

Example

from onelens_backend_client.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_form_dict = country.from_dict(country_dict)

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