Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 981 Bytes

File metadata and controls

29 lines (20 loc) · 981 Bytes

Translate500Response

Properties

Name Type Description Notes
error str Error message [optional]

Example

from openapi_client.models.translate500_response import Translate500Response

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

# convert the object into a dict
translate500_response_dict = translate500_response_instance.to_dict()
# create an instance of Translate500Response from a dict
translate500_response_from_dict = Translate500Response.from_dict(translate500_response_dict)

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