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

LendingField

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

Holds the normalized key-value pairs returned by AnalyzeDocument, including the document type, detected text, and geometry.

interface LendingField {
KeyDetection?: LendingDetection | null;
Type?: string | null;
ValueDetections?: LendingDetection[] | null;
}

§Properties

§
KeyDetection?: LendingDetection | null
[src]
§
Type?: string | null
[src]

The type of the lending document.

§
ValueDetections?: LendingDetection[] | null
[src]

An array of LendingDetection objects.