mindee
Version:
Mindee Client Library for Node.js
33 lines (32 loc) • 964 B
TypeScript
import { StringDict } from "../../../parsing/common";
import { Polygon } from "../../../geometry";
/**
* Information about the energy meter.
*/
export declare class EnergyBillV1MeterDetail {
#private;
/** The unique identifier of the energy meter. */
meterNumber: string | null;
/** The type of energy meter. */
meterType: string | null;
/** The unit of power for energy consumption. */
unit: 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;
}