Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentMessageTableCardRow
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentMessageTableCardRow
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2/classes.rb,
generated/google/apis/dialogflow_v2/representations.rb,
generated/google/apis/dialogflow_v2/representations.rb
Overview
Row of TableCard.
Instance Attribute Summary collapse
-
#cells ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentMessageTableCardCell>
Optional.
-
#divider_after ⇒ Boolean
(also: #divider_after?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageTableCardRow
constructor
A new instance of GoogleCloudDialogflowV2IntentMessageTableCardRow.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageTableCardRow
Returns a new instance of GoogleCloudDialogflowV2IntentMessageTableCardRow.
2184 2185 2186 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2184 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cells ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentMessageTableCardCell>
Optional. List of cells that make up this row.
Corresponds to the JSON property cells
2176 2177 2178 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2176 def cells @cells end |
#divider_after ⇒ Boolean Also known as: divider_after?
Optional. Whether to add a visual divider after this row.
Corresponds to the JSON property dividerAfter
2181 2182 2183 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2181 def divider_after @divider_after end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2189 2190 2191 2192 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2189 def update!(**args) @cells = args[:cells] if args.key?(:cells) @divider_after = args[:divider_after] if args.key?(:divider_after) end |