Class: Google::Cloud::Dialogflow::V2::Intent::Message::CarouselSelect
- Inherits:
-
Object
- Object
- Google::Cloud::Dialogflow::V2::Intent::Message::CarouselSelect
- Defined in:
- lib/google/cloud/dialogflow/v2/doc/google/cloud/dialogflow/v2/intent.rb
Overview
The card for presenting a carousel of options to select from.
Defined Under Namespace
Classes: Item
Instance Attribute Summary collapse
Instance Attribute Details
#items ⇒ Array<Google::Cloud::Dialogflow::V2::Intent::Message::CarouselSelect::Item>
Returns Required. Carousel items.
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 |
# File 'lib/google/cloud/dialogflow/v2/doc/google/cloud/dialogflow/v2/intent.rb', line 395 class CarouselSelect # An item in the carousel. # @!attribute [rw] info # @return [Google::Cloud::Dialogflow::V2::Intent::Message::SelectItemInfo] # Required. Additional info about the option item. # @!attribute [rw] title # @return [String] # Required. Title of the carousel item. # @!attribute [rw] description # @return [String] # Optional. The body text of the card. # @!attribute [rw] image # @return [Google::Cloud::Dialogflow::V2::Intent::Message::Image] # Optional. The image to display. class Item; end end |