Skip to content

DocumentStatus

Individual status entry for a document.

Properties

Name Type Description Notes
status str Status of the document (queued, requeued, indexed, failed)
info str Status information [optional]
timestamp datetime When this status occurred
queue_id str Queue entry ID (only for queue-related statuses) [optional]
try_count int Number of processing attempts (only for failed statuses) [optional]

Example

from amgix_client.models.document_status import DocumentStatus

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

# convert the object into a dict
document_status_dict = document_status_instance.to_dict()
# create an instance of DocumentStatus from a dict
document_status_from_dict = DocumentStatus.from_dict(document_status_dict)
[Back to Model list] [Back to API list] [Back to README]