mindee
Version:
Mindee Client Library for Node.js
27 lines (26 loc) • 1.05 kB
TypeScript
import { Prediction, StringDict } from "../../parsing/common";
import { AmountField, DateField, StringField } from "../../parsing/standard";
/**
* Delivery note API version 1.2 document data.
*/
export declare class DeliveryNoteV1Document implements Prediction {
/** The address of the customer receiving the goods. */
customerAddress: StringField;
/** The name of the customer receiving the goods. */
customerName: StringField;
/** The date on which the delivery is scheduled to arrive. */
deliveryDate: DateField;
/** A unique identifier for the delivery note. */
deliveryNumber: StringField;
/** The address of the supplier providing the goods. */
supplierAddress: StringField;
/** The name of the supplier providing the goods. */
supplierName: StringField;
/** The total monetary value of the goods being delivered. */
totalAmount: AmountField;
constructor(rawPrediction: StringDict, pageId?: number);
/**
* Default string representation.
*/
toString(): string;
}