Class: Aws::Textract::Types::LendingDetection
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::LendingDetection
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-textract/types.rb
Overview
The results extracted for a lending document.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#confidence ⇒ Float
The confidence level for the text of a detected value in a lending document.
-
#geometry ⇒ Types::Geometry
Information about where the following items are located on a document page: detected page, text, key-value pairs, tables, table cells, and selection elements.
-
#selection_status ⇒ String
The selection status of a selection element, such as an option button or check box.
-
#text ⇒ String
The text extracted for a detected value in a lending document.
Instance Attribute Details
#confidence ⇒ Float
The confidence level for the text of a detected value in a lending document.
2079 2080 2081 2082 2083 2084 2085 2086 |
# File 'lib/aws-sdk-textract/types.rb', line 2079 class LendingDetection < Struct.new( :text, :selection_status, :geometry, :confidence) SENSITIVE = [] include Aws::Structure end |
#geometry ⇒ Types::Geometry
Information about where the following items are located on a document page: detected page, text, key-value pairs, tables, table cells, and selection elements.
2079 2080 2081 2082 2083 2084 2085 2086 |
# File 'lib/aws-sdk-textract/types.rb', line 2079 class LendingDetection < Struct.new( :text, :selection_status, :geometry, :confidence) SENSITIVE = [] include Aws::Structure end |
#selection_status ⇒ String
The selection status of a selection element, such as an option button or check box.
2079 2080 2081 2082 2083 2084 2085 2086 |
# File 'lib/aws-sdk-textract/types.rb', line 2079 class LendingDetection < Struct.new( :text, :selection_status, :geometry, :confidence) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
The text extracted for a detected value in a lending document.
2079 2080 2081 2082 2083 2084 2085 2086 |
# File 'lib/aws-sdk-textract/types.rb', line 2079 class LendingDetection < Struct.new( :text, :selection_status, :geometry, :confidence) SENSITIVE = [] include Aws::Structure end |