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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#key_detectionTypes::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

#typeString

The type of the lending document.

Returns:

  • (String)


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_detectionsArray<Types::LendingDetection>

An array of LendingDetection objects.

Returns:



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