interface CreateDocumentParams {
    documentDetection?: boolean;
    documentImageSizeLimit?: number;
    filters?: ParametricFilter[];
    imageFileUris?: string[];
}

Properties

documentDetection?: boolean

Recognizes documents on created document. Default is true.

documentImageSizeLimit?: number

The maximum size of the document image. Default is 0, no limit.

filters?: ParametricFilter[]

The list of filters applied to the page.

imageFileUris?: string[]

Image URIs that will be used to create the document. If empty or undefined, empty document will be created.