Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentMessageTableCardRow

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageTableCardRow

Returns a new instance of GoogleCloudDialogflowV2IntentMessageTableCardRow.



2180
2181
2182
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2180

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cellsArray<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentMessageTableCardCell>

Optional. List of cells that make up this row. Corresponds to the JSON property cells



2172
2173
2174
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2172

def cells
  @cells
end

#divider_afterBoolean Also known as: divider_after?

Optional. Whether to add a visual divider after this row. Corresponds to the JSON property dividerAfter

Returns:

  • (Boolean)


2177
2178
2179
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2177

def divider_after
  @divider_after
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2185
2186
2187
2188
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2185

def update!(**args)
  @cells = args[:cells] if args.key?(:cells)
  @divider_after = args[:divider_after] if args.key?(:divider_after)
end