Class: Aws::Textract::Types::LendingField
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::LendingField
- Defined in:
- gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb
Overview
Holds the normalized key-value pairs returned by AnalyzeDocument, including the document type, detected text, and geometry.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key_detection ⇒ Types::LendingDetection
The results extracted for a lending document.
-
#type ⇒ String
The type of the lending document.
-
#value_detections ⇒ Array<Types::LendingDetection>
An array of LendingDetection objects.
Instance Attribute Details
#key_detection ⇒ Types::LendingDetection
The results extracted for a lending document.
2125 2126 2127 2128 2129 2130 2131 |
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2125 class LendingField < Struct.new( :type, :key_detection, :value_detections) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the lending document.
2125 2126 2127 2128 2129 2130 2131 |
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2125 class LendingField < Struct.new( :type, :key_detection, :value_detections) SENSITIVE = [] include Aws::Structure end |
#value_detections ⇒ Array<Types::LendingDetection>
An array of LendingDetection objects.
2125 2126 2127 2128 2129 2130 2131 |
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2125 class LendingField < Struct.new( :type, :key_detection, :value_detections) SENSITIVE = [] include Aws::Structure end |