UNPKG

mindee

Version:

Mindee Client Library for Node.js

39 lines (38 loc) 1.26 kB
import { StringDict } from "../../../parsing/common"; import { Polygon } from "../../../geometry"; /** * Details of Taxes and Contributions. */ export declare class EnergyBillV1TaxesAndContribution { #private; /** Description or details of the Taxes and Contributions. */ description: string | null; /** The end date of the Taxes and Contributions. */ endDate: string | null; /** The start date of the Taxes and Contributions. */ startDate: string | null; /** The rate of tax applied to the total cost. */ taxRate: number | null; /** The total cost of Taxes and Contributions. */ total: number | null; /** The price per unit of Taxes and Contributions. */ unitPrice: 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; }