GoodMem
ReferenceClient SDKsPython SDKModels

DocumentTimings Model

DocumentTimings Model documentation for Python SDK

Aggregate timing statistics for an OCR request.

Properties

NameTypeDescriptionNotes
wall_time_msintEnd-to-end request time (ms)
sum_queue_wait_msintSum of per-page queue wait times (ms)
sum_render_msintSum of per-page render times (ms)
sum_ocr_msintSum of per-page OCR times (ms)
sum_page_total_msintSum of per-page total times (ms)

Example

from goodmem_client.models.document_timings import DocumentTimings

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

# convert the object into a dict
document_timings_dict = document_timings_instance.to_dict()
# create an instance of DocumentTimings from a dict
document_timings_from_dict = DocumentTimings.from_dict(document_timings_dict)

↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK

On this page