Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 969 Bytes

File metadata and controls

31 lines (22 loc) · 969 Bytes

SpokenLanguage

Properties

Name Type Description Notes
english_name str [optional]
iso_639_1 str [optional]
name str [optional]

Example

from overseerr.models.spoken_language import SpokenLanguage

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

# convert the object into a dict
spoken_language_dict = spoken_language_instance.to_dict()
# create an instance of SpokenLanguage from a dict
spoken_language_from_dict = SpokenLanguage.from_dict(spoken_language_dict)

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