Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.27 KB

File metadata and controls

30 lines (21 loc) · 1.27 KB

TranslateDictionary200ResponseLanguage

Properties

Name Type Description Notes
iso str ISO code of the language [optional]
label str Human-readable language name [optional]

Example

from openapi_client.models.translate_dictionary200_response_language import TranslateDictionary200ResponseLanguage

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

# convert the object into a dict
translate_dictionary200_response_language_dict = translate_dictionary200_response_language_instance.to_dict()
# create an instance of TranslateDictionary200ResponseLanguage from a dict
translate_dictionary200_response_language_from_dict = TranslateDictionary200ResponseLanguage.from_dict(translate_dictionary200_response_language_dict)

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