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

DocumentGroup

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

Summary information about documents grouped by the same document type.

interface DocumentGroup {
DetectedSignatures?: DetectedSignature[] | null;
SplitDocuments?: SplitDocument[] | null;
Type?: string | null;
UndetectedSignatures?: UndetectedSignature[] | null;
}

§Properties

§
DetectedSignatures?: DetectedSignature[] | null
[src]

A list of the detected signatures found in a document group.

§
SplitDocuments?: SplitDocument[] | null
[src]

An array that contains information about the pages of a document, defined by logical boundary.

§
Type?: string | null
[src]

The type of document that Amazon Textract has detected. See LINK for a list of all types returned by Textract.

§
UndetectedSignatures?: UndetectedSignature[] | null
[src]

A list of any expected signatures not found in a document group.