Class: Aws::Textract::Types::LendingResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::LendingResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-textract/types.rb
Overview
Contains the detections for each page analyzed through the Analyze Lending API.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#extractions ⇒ Array<Types::Extraction>
An array of Extraction to hold structured data.
-
#page ⇒ Integer
The page number for a page, with regard to whole submission.
-
#page_classification ⇒ Types::PageClassification
The classifier result for a given page.
Instance Attribute Details
#extractions ⇒ Array<Types::Extraction>
An array of Extraction to hold structured data. e.g. normalized key value pairs instead of raw OCR detections .
2151 2152 2153 2154 2155 2156 2157 |
# File 'lib/aws-sdk-textract/types.rb', line 2151 class LendingResult < Struct.new( :page, :page_classification, :extractions) SENSITIVE = [] include Aws::Structure end |
#page ⇒ Integer
The page number for a page, with regard to whole submission.
2151 2152 2153 2154 2155 2156 2157 |
# File 'lib/aws-sdk-textract/types.rb', line 2151 class LendingResult < Struct.new( :page, :page_classification, :extractions) SENSITIVE = [] include Aws::Structure end |
#page_classification ⇒ Types::PageClassification
The classifier result for a given page.
2151 2152 2153 2154 2155 2156 2157 |
# File 'lib/aws-sdk-textract/types.rb', line 2151 class LendingResult < Struct.new( :page, :page_classification, :extractions) SENSITIVE = [] include Aws::Structure end |