UNPKG

mindee

Version:

Mindee Client Library for Node.js

35 lines (34 loc) 997 B
import { StringDict } from "../../parsing/common"; import { Polygon } from "../../geometry"; /** * The party responsible for shipping the goods. */ export declare class BillOfLadingV1Shipper { #private; /** The address of the shipper. */ address: string | null; /** The email of the shipper. */ email: string | null; /** The name of the shipper. */ name: string | null; /** The phone number of the shipper. */ phone: 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; }