Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

ListLanguages2XXResponseInner

Properties

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

Example

from seerr.models.list_languages2_xx_response_inner import ListLanguages2XXResponseInner

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

# convert the object into a dict
list_languages2_xx_response_inner_dict = list_languages2_xx_response_inner_instance.to_dict()
# create an instance of ListLanguages2XXResponseInner from a dict
list_languages2_xx_response_inner_from_dict = ListLanguages2XXResponseInner.from_dict(list_languages2_xx_response_inner_dict)

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