UNPKG

mindee

Version:

Mindee Client Library for Node.js

31 lines (30 loc) 865 B
import { StringDict } from "../../../parsing/common"; import { Polygon } from "../../../geometry"; /** * Copayments for covered services. */ export declare class HealthcareCardV1Copay { #private; /** The price of the service. */ serviceFees: number | null; /** The name of the service. */ serviceName: 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 an rST table. */ toTableLine(): string; }