Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

LocalizationLanguageResource.md

File metadata and controls

29 lines (20 loc) · 1.05 KB

LocalizationLanguageResource

Properties

Name Type Description Notes
identifier str [optional]

Example

from sonarr.models.localization_language_resource import LocalizationLanguageResource

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

# convert the object into a dict
localization_language_resource_dict = localization_language_resource_instance.to_dict()
# create an instance of LocalizationLanguageResource from a dict
localization_language_resource_from_dict = LocalizationLanguageResource.from_dict(localization_language_resource_dict)

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