Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 944 Bytes

File metadata and controls

31 lines (22 loc) · 944 Bytes

Country

Properties

Name Type Description Notes
id int The ID of the country [optional]
name str The name of the country [optional]
iso_code str The ISO standard code of the country [optional]

Example

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