| Name | Type | Description | Notes |
|---|---|---|---|
| translation | str | Translated text | [optional] |
| detected_language | Translate200ResponseOneOfDetectedLanguage | [optional] | |
| definition | Translate200ResponseOneOfDefinition | [optional] |
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)