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

ExpenseField

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

Breakdown of detected information, seperated into the catagories Type, LabelDetection, and ValueDetection

interface ExpenseField {
LabelDetection?: ExpenseDetection | null;
PageNumber?: number | null;
Type?: ExpenseType | null;
ValueDetection?: ExpenseDetection | null;
}

§Properties

§
LabelDetection?: ExpenseDetection | null
[src]

The explicitly stated label of a detected element.

§
PageNumber?: number | null
[src]

The page number the value was detected on.

§
Type?: ExpenseType | null
[src]

The implied label of a detected element. Present alongside LabelDetection for explicit elements.

§
ValueDetection?: ExpenseDetection | null
[src]

The value of a detected element. Present in explicit and implicit elements.