interface IdentifyTextOutput {
    text: {
        fullText: string;
        keyValues?: KeyValue[];
        lines: string[];
        linesDetailed: LineDetailed[];
        selections?: {
            boundingBox?: BoundingBox;
            polygon?: Polygon;
            selected: boolean;
        }[];
        tables?: Table[];
        words: Word[];
    };
}

Properties

Properties

text: {
    fullText: string;
    keyValues?: KeyValue[];
    lines: string[];
    linesDetailed: LineDetailed[];
    selections?: {
        boundingBox?: BoundingBox;
        polygon?: Polygon;
        selected: boolean;
    }[];
    tables?: Table[];
    words: Word[];
}

Type declaration

  • fullText: string
  • Optional keyValues?: KeyValue[]
  • lines: string[]
  • linesDetailed: LineDetailed[]
  • Optional selections?: {
        boundingBox?: BoundingBox;
        polygon?: Polygon;
        selected: boolean;
    }[]
  • Optional tables?: Table[]
  • words: Word[]