Name |
Type |
Description |
Notes |
id |
int |
|
[optional] |
name |
str |
|
[optional] |
name_lower |
str |
|
[optional] [readonly] |
from sonarr.models.language_resource import LanguageResource
# TODO update the JSON string below
json = "{}"
# create an instance of LanguageResource from a JSON string
language_resource_instance = LanguageResource.from_json(json)
# print the JSON string representation of the object
print(LanguageResource.to_json())
# convert the object into a dict
language_resource_dict = language_resource_instance.to_dict()
# create an instance of LanguageResource from a dict
language_resource_from_dict = LanguageResource.from_dict(language_resource_dict)
[Back to Model list] [Back to API list] [Back to README]