Class: Aws::Textract::Types::ExpenseGroupProperty

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-textract/types.rb

Overview

Shows the group that a certain key belongs to. This helps differentiate between names and addresses for different organizations, that can be hard to determine via JSON response.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

Provides a group Id number, which will be the same for each in the group.

Returns:

  • (String)


1250
1251
1252
1253
1254
1255
# File 'lib/aws-sdk-textract/types.rb', line 1250

class ExpenseGroupProperty < Struct.new(
  :types,
  :id)
  SENSITIVE = []
  include Aws::Structure
end

#typesArray<String>

Informs you on whether the expense group is a name or an address.

Returns:

  • (Array<String>)


1250
1251
1252
1253
1254
1255
# File 'lib/aws-sdk-textract/types.rb', line 1250

class ExpenseGroupProperty < Struct.new(
  :types,
  :id)
  SENSITIVE = []
  include Aws::Structure
end