Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.47 KB

File metadata and controls

34 lines (25 loc) · 1.47 KB

AddDocumentOcrRequest

Properties

Name Type Description Notes
textract_queries List[TextractQuery] [optional]
parse_types List[str] OCR Parse types - TEXT, FORMS, TABLES, QUERIES [optional]
add_pdf_detected_characters_as_text bool Rewrite PDF document, converting any Image text to searchable text [optional]
ocr_engine OcrEngine [optional]
ocr_number_of_pages str Number of pages to OCR (from start) (-1 all) [optional]
ocr_output_type OcrOutputType [optional]

Example

from formkiq_client.models.add_document_ocr_request import AddDocumentOcrRequest

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

# convert the object into a dict
add_document_ocr_request_dict = add_document_ocr_request_instance.to_dict()
# create an instance of AddDocumentOcrRequest from a dict
add_document_ocr_request_from_dict = AddDocumentOcrRequest.from_dict(add_document_ocr_request_dict)

[Back to Model list] [Back to API list] [Back to README]