class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageCarouselSelectItem
An item in the carousel.
Attributes
description[RW]
Optional. The body text of the card. Corresponds to the JSON property `description` @return [String]
image[RW]
The image response message. Corresponds to the JSON property `image` @return [Google::Apis::DialogflowV3beta1::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::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageSelectItemInfo]
title[RW]
Required. Title of the carousel item. Corresponds to the JSON property `title` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 9526 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_v3beta1/classes.rb, line 9531 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