Class: Aws::Textract::Types::ExpenseGroupProperty
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::ExpenseGroupProperty
- 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
-
#id ⇒ String
Provides a group Id number, which will be the same for each in the group.
-
#types ⇒ Array<String>
Informs you on whether the expense group is a name or an address.
Instance Attribute Details
#id ⇒ String
Provides a group Id number, which will be the same for each in the group.
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 |
#types ⇒ Array<String>
Informs you on whether the expense group is a name or an address.
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 |