Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 876 Bytes

IsoCountry.md

File metadata and controls

30 lines (21 loc) · 876 Bytes

IsoCountry

Properties

Name Type Description Notes
two_letter_code str [optional]
name str [optional]

Example

from lidarr.models.iso_country import IsoCountry

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

# convert the object into a dict
iso_country_dict = iso_country_instance.to_dict()
# create an instance of IsoCountry from a dict
iso_country_from_dict = IsoCountry.from_dict(iso_country_dict)

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