Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LendingResult

import type { LendingResult } from "https://aws-api.deno.dev/v0.4/services/textract.ts?docs=full";

Contains the detections for each page analyzed through the Analyze Lending API.

interface LendingResult {
Extractions?: Extraction[] | null;
Page?: number | null;
PageClassification?: PageClassification | null;
}

§Properties

§
Extractions?: Extraction[] | null
[src]

An array of Extraction to hold structured data. e.g. normalized key value pairs instead of raw OCR detections .

§
Page?: number | null
[src]

The page number for a page, with regard to whole submission.

§
PageClassification?: PageClassification | null
[src]

The classifier result for a given page.