Name | Type | Description | Notes |
---|---|---|---|
two_letter_code | str | [optional] | |
name | str | [optional] |
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)