Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

TranslateDictionary500Response

Properties

Name Type Description Notes
error str Error message [optional]

Example

from openapi_client.models.translate_dictionary500_response import TranslateDictionary500Response

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

# convert the object into a dict
translate_dictionary500_response_dict = translate_dictionary500_response_instance.to_dict()
# create an instance of TranslateDictionary500Response from a dict
translate_dictionary500_response_from_dict = TranslateDictionary500Response.from_dict(translate_dictionary500_response_dict)

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