class Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageTableCard
Table card for Actions on Google
.
Attributes
Optional. Display properties for the columns in this table. Corresponds to the JSON property `columnProperties` @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageColumnProperties>]
The image response message. Corresponds to the JSON property `image` @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageImage]
Optional. Rows in this table of data. Corresponds to the JSON property `rows` @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageTableCardRow>]
Optional. Subtitle to the title. Corresponds to the JSON property `subtitle` @return [String]
Required. Title of the card. Corresponds to the JSON property `title` @return [String]
Public Class Methods
# File lib/google/apis/dialogflow_v3/classes.rb, line 13468 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dialogflow_v3/classes.rb, line 13473 def update!(**args) @buttons = args[:buttons] if args.key?(:buttons) @column_properties = args[:column_properties] if args.key?(:column_properties) @image = args[:image] if args.key?(:image) @rows = args[:rows] if args.key?(:rows) @subtitle = args[:subtitle] if args.key?(:subtitle) @title = args[:title] if args.key?(:title) end