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

AnalyzeIDDetections

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

Used to contain the information detected by an AnalyzeID operation.

interface AnalyzeIDDetections {
Confidence?: number | null;
NormalizedValue?: NormalizedValue | null;
Text: string;
}

§Properties

§
Confidence?: number | null
[src]

The confidence score of the detected text.

§
NormalizedValue?: NormalizedValue | null
[src]

Only returned for dates, returns the type of value detected and the date written in a more machine readable way.

§
Text: string
[src]

Text of either the normalized field or value associated with it.