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

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

Properties

LineItemGroupIndex?: number

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[]

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