mindee
Version:
Mindee Client Library for Node.js
19 lines (18 loc) • 698 B
TypeScript
import { Prediction, StringDict } from "../../../../v1/parsing/common/index.js";
import { StringField } from "../../../../v1/parsing/standard/index.js";
/**
* Bank Account Details API version 1.0 document data.
*/
export declare class BankAccountDetailsV1Document implements Prediction {
/** The name of the account holder as seen on the document. */
accountHolderName: StringField;
/** The International Bank Account Number (IBAN). */
iban: StringField;
/** The bank's SWIFT Business Identifier Code (BIC). */
swift: StringField;
constructor(rawPrediction: StringDict, pageId?: number);
/**
* Default string representation.
*/
toString(): string;
}