Class: Google::Cloud::Dialogflow::V2::Intent::Message::CarouselSelect
- Inherits:
-
Object
- Object
- Google::Cloud::Dialogflow::V2::Intent::Message::CarouselSelect
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/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.
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'proto_docs/google/cloud/dialogflow/v2/intent.rb', line 561 class CarouselSelect include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # 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 include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |