Class: Aws::Textract::Types::LineItemGroup

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#line_item_group_indexInteger

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.

Returns:

  • (Integer)


2221
2222
2223
2224
2225
2226
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2221

class LineItemGroup < Struct.new(
  :line_item_group_index,
  :line_items)
  SENSITIVE = []
  include Aws::Structure
end

#line_itemsArray<Types::LineItemFields>

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

Returns:



2221
2222
2223
2224
2225
2226
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2221

class LineItemGroup < Struct.new(
  :line_item_group_index,
  :line_items)
  SENSITIVE = []
  include Aws::Structure
end