Class: Aws::Honeycode::Types::DataItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::DataItem
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
The data in a particular data cell defined on the screen.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#formatted_value ⇒ String
The formatted value of the data.
-
#override_format ⇒ String
The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.
-
#raw_value ⇒ String
The raw value of the data.
Instance Attribute Details
#formatted_value ⇒ String
The formatted value of the data. e.g. John Smith.
549 550 551 552 553 554 555 |
# File 'lib/aws-sdk-honeycode/types.rb', line 549 class DataItem < Struct.new( :override_format, :raw_value, :formatted_value) SENSITIVE = [] include Aws::Structure end |
#override_format ⇒ String
The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.
549 550 551 552 553 554 555 |
# File 'lib/aws-sdk-honeycode/types.rb', line 549 class DataItem < Struct.new( :override_format, :raw_value, :formatted_value) SENSITIVE = [] include Aws::Structure end |
#raw_value ⇒ String
The raw value of the data. e.g. [email protected]
549 550 551 552 553 554 555 |
# File 'lib/aws-sdk-honeycode/types.rb', line 549 class DataItem < Struct.new( :override_format, :raw_value, :formatted_value) SENSITIVE = [] include Aws::Structure end |