UNPKG

mindee

Version:

Mindee Client Library for Node.js

37 lines (36 loc) 1.14 kB
import { StringDict } from "../../../parsing/common"; import { Polygon } from "../../../geometry"; /** * Information about paid time off. */ export declare class PayslipV3PaidTimeOff { #private; /** The amount of paid time off accrued in the period. */ accrued: number | null; /** The paid time off period. */ period: string | null; /** The type of paid time off. */ ptoType: string | null; /** The remaining amount of paid time off at the end of the period. */ remaining: number | null; /** The amount of paid time off used in the period. */ used: 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 an rST table. */ toTableLine(): string; }