Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.35 KB

File metadata and controls

31 lines (22 loc) · 1.35 KB

TranslateListLanguages200ResponseInner

Properties

Name Type Description Notes
language str Language code [optional]
name str Language name [optional]
supports_formality bool Whether formality is supported for this language [optional]

Example

from openapi_client.models.translate_list_languages200_response_inner import TranslateListLanguages200ResponseInner

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

# convert the object into a dict
translate_list_languages200_response_inner_dict = translate_list_languages200_response_inner_instance.to_dict()
# create an instance of TranslateListLanguages200ResponseInner from a dict
translate_list_languages200_response_inner_from_dict = TranslateListLanguages200ResponseInner.from_dict(translate_list_languages200_response_inner_dict)

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