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

LineItemGroup

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

A grouping of tables which contain LineItems, with each table identified by the table's LineItemGroupIndex.

interface LineItemGroup {
LineItemGroupIndex?: number | null;
LineItems?: LineItemFields[] | null;
}

§Properties

§
LineItemGroupIndex?: number | null
[src]

The number used to identify a specific table in a document. The first table encountered will have a LineItemGroupIndex of 1, the second 2, etc.

§
LineItems?: LineItemFields[] | null
[src]

The breakdown of information on a particular line of a table.