UNPKG

mindee

Version:

Mindee Client Library for Node.js

17 lines (16 loc) 618 B
import { Inference, StringDict, Page } from "../../../parsing/common"; import { BankAccountDetailsV2Document } from "./bankAccountDetailsV2Document"; /** * Bank Account Details API version 2 inference prediction. */ export declare class BankAccountDetailsV2 extends Inference { /** The endpoint's name. */ endpointName: string; /** The endpoint's version. */ endpointVersion: string; /** The document-level prediction. */ prediction: BankAccountDetailsV2Document; /** The document's pages. */ pages: Page<BankAccountDetailsV2Document>[]; constructor(rawPrediction: StringDict); }