DocumentTimings Model
DocumentTimings Model documentation for Python SDK
Aggregate timing statistics for an OCR request.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| wall_time_ms | int | End-to-end request time (ms) | |
| sum_queue_wait_ms | int | Sum of per-page queue wait times (ms) | |
| sum_render_ms | int | Sum of per-page render times (ms) | |
| sum_ocr_ms | int | Sum of per-page OCR times (ms) | |
| sum_page_total_ms | int | Sum 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