Class: Google::Cloud::Dialogflow::V2::Intent::Message::CarouselSelect

Inherits:
Object
  • Object
show all
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

#itemsArray<Google::Cloud::Dialogflow::V2::Intent::Message::CarouselSelect::Item>

Returns Required. Carousel items.

Returns:



396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
# File 'lib/google/cloud/dialogflow/v2/doc/google/cloud/dialogflow/v2/intent.rb', line 396

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