Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

Translate200ResponseOneOf

Properties

Name Type Description Notes
translation str Translated text [optional]
detected_language Translate200ResponseOneOfDetectedLanguage [optional]
definition Translate200ResponseOneOfDefinition [optional]

Example

from openapi_client.models.translate200_response_one_of import Translate200ResponseOneOf

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

# convert the object into a dict
translate200_response_one_of_dict = translate200_response_one_of_instance.to_dict()
# create an instance of Translate200ResponseOneOf from a dict
translate200_response_one_of_from_dict = Translate200ResponseOneOf.from_dict(translate200_response_one_of_dict)

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