OcrPageResult Model
OcrPageResult Model documentation for Python SDK
Per-page OCR result containing output or error status.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| page_index | int | 0-based page index | |
| page | OcrPage | [optional] | |
| status | RpcStatus | [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