Class: Aws::Textract::Types::LineItemGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::LineItemGroup
- 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
-
#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.
2227 2228 2229 2230 2231 2232 |
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2227 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.
2227 2228 2229 2230 2231 2232 |
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2227 class LineItemGroup < Struct.new( :line_item_group_index, :line_items) SENSITIVE = [] include Aws::Structure end |