UNPKG

mindee

Version:

Mindee Client Library for Node.js

33 lines (32 loc) 1.02 kB
import { StringDict } from "../../../parsing/common"; import { Polygon } from "../../../geometry"; /** * Information about paid time off. */ export declare class PayslipV2Pto { #private; /** The amount of paid time off accrued in this period. */ accruedThisPeriod: number | null; /** The balance of paid time off at the end of the period. */ balanceEndOfPeriod: number | null; /** The amount of paid time off used in this period. */ usedThisPeriod: number | 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; }