UNPKG

mindee

Version:

Mindee Client Library for Node.js

39 lines (38 loc) 1.2 kB
import { StringDict } from "../../../parsing/common"; import { Polygon } from "../../../geometry"; /** * Information about the employment. */ export declare class PayslipV2Employment { #private; /** The category of the employment. */ category: string | null; /** The coefficient of the employment. */ coefficient: number | null; /** The collective agreement of the employment. */ collectiveAgreement: string | null; /** The job title of the employee. */ jobTitle: string | null; /** The position level of the employment. */ positionLevel: string | null; /** The start date of the employment. */ startDate: 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; }