Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.38 KB

File metadata and controls

32 lines (23 loc) · 1.38 KB

Translate200Response

Properties

Name Type Description Notes
translation str Translated text [optional]
detected_language Translate200ResponseOneOfDetectedLanguage [optional]
definition Translate200ResponseOneOfDefinition [optional]
snippets List[str] Array of translated text snippets (for batch translation). The order matches the input array and preserves context between snippets. [optional]

Example

from openapi_client.models.translate200_response import Translate200Response

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

# convert the object into a dict
translate200_response_dict = translate200_response_instance.to_dict()
# create an instance of Translate200Response from a dict
translate200_response_from_dict = Translate200Response.from_dict(translate200_response_dict)

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