mindee
Version:
Mindee Client Library for Node.js
17 lines (16 loc) • 565 B
TypeScript
import { Inference, StringDict, Page } from "../../../v1/parsing/common/index.js";
import { InvoiceV4Document } from "./invoiceV4Document.js";
/**
* Invoice API version 4 inference prediction.
*/
export declare class InvoiceV4 extends Inference {
/** The endpoint's name. */
endpointName: string;
/** The endpoint's version. */
endpointVersion: string;
/** The document-level prediction. */
prediction: InvoiceV4Document;
/** The document's pages. */
pages: Page<InvoiceV4Document>[];
constructor(rawPrediction: StringDict);
}