class Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageListSelectItem
An item in the list.
Attributes
description[RW]
Optional. The main text describing the item. Corresponds to the JSON property `description` @return [String]
image[RW]
The image response message. Corresponds to the JSON property `image` @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageImage]
info[RW]
Additional info about the select item for when it is triggered in a dialog. Corresponds to the JSON property `info` @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageSelectItemInfo]
title[RW]
Required. The title of the list item. Corresponds to the JSON property `title` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 10322 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3/classes.rb, line 10327 def update!(**args) @description = args[:description] if args.key?(:description) @image = args[:image] if args.key?(:image) @info = args[:info] if args.key?(:info) @title = args[:title] if args.key?(:title) end