Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

LanguageProfileResource.md

File metadata and controls

33 lines (24 loc) · 1.22 KB

LanguageProfileResource

Properties

Name Type Description Notes
id int [optional]
name str [optional]
upgrade_allowed bool [optional]
cutoff Language [optional]
languages List[LanguageProfileItemResource] [optional]

Example

from sonarr.models.language_profile_resource import LanguageProfileResource

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

# convert the object into a dict
language_profile_resource_dict = language_profile_resource_instance.to_dict()
# create an instance of LanguageProfileResource from a dict
language_profile_resource_from_dict = LanguageProfileResource.from_dict(language_profile_resource_dict)

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