GoodMem
ReferenceClient SDKsPython SDKModels

OcrPageResult Model

OcrPageResult Model documentation for Python SDK

Per-page OCR result containing output or error status.

Properties

NameTypeDescriptionNotes
page_indexint0-based page index
pageOcrPage[optional]
statusRpcStatus[optional]

Example

from goodmem_client.models.ocr_page_result import OcrPageResult

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

# convert the object into a dict
ocr_page_result_dict = ocr_page_result_instance.to_dict()
# create an instance of OcrPageResult from a dict
ocr_page_result_from_dict = OcrPageResult.from_dict(ocr_page_result_dict)

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

On this page