Class: Aws::Textract::Types::LineItemGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::LineItemGroup
- Includes:
- Structure
- Defined in:
- 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
-
#line_item_group_index ⇒ Integer
The number used to identify a specific table in a document.
-
#line_items ⇒ Array<Types::LineItemFields>
The breakdown of information on a particular line of a table.
Instance Attribute Details
#line_item_group_index ⇒ Integer
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.
2221 2222 2223 2224 2225 2226 |
# File 'lib/aws-sdk-textract/types.rb', line 2221 class LineItemGroup < Struct.new( :line_item_group_index, :line_items) SENSITIVE = [] include Aws::Structure end |
#line_items ⇒ Array<Types::LineItemFields>
The breakdown of information on a particular line of a table.
2221 2222 2223 2224 2225 2226 |
# File 'lib/aws-sdk-textract/types.rb', line 2221 class LineItemGroup < Struct.new( :line_item_group_index, :line_items) SENSITIVE = [] include Aws::Structure end |