Class: Aws::Textract::Types::LendingField

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#key_detectionTypes::LendingDetection

The results extracted for a lending document.



2164
2165
2166
2167
2168
2169
2170
# File 'lib/aws-sdk-textract/types.rb', line 2164

class LendingField < Struct.new(
  :type,
  :key_detection,
  :value_detections)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of the lending document.

Returns:

  • (String)


2164
2165
2166
2167
2168
2169
2170
# File 'lib/aws-sdk-textract/types.rb', line 2164

class LendingField < Struct.new(
  :type,
  :key_detection,
  :value_detections)
  SENSITIVE = []
  include Aws::Structure
end

#value_detectionsArray<Types::LendingDetection>

An array of LendingDetection objects.

Returns:



2164
2165
2166
2167
2168
2169
2170
# File 'lib/aws-sdk-textract/types.rb', line 2164

class LendingField < Struct.new(
  :type,
  :key_detection,
  :value_detections)
  SENSITIVE = []
  include Aws::Structure
end