Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

LanguageProfileItemResource.md

File metadata and controls

31 lines (22 loc) · 1.13 KB

LanguageProfileItemResource

Properties

Name Type Description Notes
id int [optional]
language Language [optional]
allowed bool [optional]

Example

from sonarr.models.language_profile_item_resource import LanguageProfileItemResource

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

# convert the object into a dict
language_profile_item_resource_dict = language_profile_item_resource_instance.to_dict()
# create an instance of LanguageProfileItemResource from a dict
language_profile_item_resource_from_dict = LanguageProfileItemResource.from_dict(language_profile_item_resource_dict)

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