API bindings for the Lilt REST API.
A list of translations for the query term.
Name | Type | Description | Notes |
---|---|---|---|
pretranslation | str | [optional] |
from lilt.models.document_without_segments_status import DocumentWithoutSegmentsStatus
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentWithoutSegmentsStatus from a JSON string
document_without_segments_status_instance = DocumentWithoutSegmentsStatus.from_json(json)
# print the JSON string representation of the object
print(DocumentWithoutSegmentsStatus.to_json())
# convert the object into a dict
document_without_segments_status_dict = document_without_segments_status_instance.to_dict()
# create an instance of DocumentWithoutSegmentsStatus from a dict
document_without_segments_status_from_dict = DocumentWithoutSegmentsStatus.from_dict(document_without_segments_status_dict)