mindee
Version:
Mindee Client Library for Node.js
39 lines (38 loc) • 1.22 kB
TypeScript
import { StringDict } from "../../../parsing/common";
import { Polygon } from "../../../geometry";
/**
* The subscription details fee for the energy service.
*/
export declare class EnergyBillV1Subscription {
#private;
/** Description or details of the subscription. */
description: string | null;
/** The end date of the subscription. */
endDate: string | null;
/** The start date of the subscription. */
startDate: string | null;
/** The rate of tax applied to the total cost. */
taxRate: number | null;
/** The total cost of subscription. */
total: number | null;
/** The price per unit of subscription. */
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;
}