UNPKG

mindee

Version:

Mindee Client Library for Node.js

33 lines (32 loc) 940 B
import { StringDict } from "../../../parsing/common"; import { Polygon } from "../../../geometry"; /** * Information about the employee's bank account. */ export declare class PayslipV3BankAccountDetail { #private; /** The name of the bank. */ bankName: string | null; /** The IBAN of the bank account. */ iban: string | null; /** The SWIFT code of the bank. */ swift: string | null; /** Confidence score */ confidence: number; /** The document page on which the information was found. */ pageId: number; /** * Contains the relative vertices coordinates (points) of a polygon containing * the field in the document. */ polygon: Polygon; constructor({ prediction }: StringDict); /** * Default string representation. */ toString(): string; /** * Output in a format suitable for inclusion in a field list. */ toFieldList(): string; }