UNPKG

mindee

Version:

Mindee Client Library for Node.js

33 lines (32 loc) 992 B
import { StringDict } from "../../parsing/common"; import { Polygon } from "../../geometry"; /** * The shipping company responsible for transporting the goods. */ export declare class BillOfLadingV1Carrier { #private; /** The name of the carrier. */ name: string | null; /** The professional number of the carrier. */ professionalNumber: string | null; /** The Standard Carrier Alpha Code (SCAC) of the carrier. */ scac: 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; }