lilt-python

API bindings for the Lilt REST API.

View the Project on GitHub lilt/lilt-python

DocumentWithoutSegmentsStatus

A list of translations for the query term.

Properties

Name Type Description Notes
pretranslation str   [optional]

Example

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)

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