Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v2/classes.rb,
generated/google/apis/dialogflow_v2/representations.rb,
generated/google/apis/dialogflow_v2/representations.rb

Overview

Carousel Rich Business Messaging (RBM) rich card. Rich cards allow you to respond to users with more vivid content, e.g. with media and suggestions. For more details about RBM rich cards, please see: https://developers.google.com/rcs-business-messaging/rbm/guides/build/send- messages#rich-cards. If you want to show a single card with more control over the layout, please use RbmStandaloneCard instead.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard

Returns a new instance of GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard



3858
3859
3860
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 3858

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#card_contentsArray<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent>

Required. The cards in the carousel. A carousel must have at least 2 cards and at most 10. Corresponds to the JSON property cardContents



3851
3852
3853
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 3851

def card_contents
  @card_contents
end

#card_widthString

Required. The width of the cards in the carousel. Corresponds to the JSON property cardWidth

Returns:

  • (String)


3856
3857
3858
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 3856

def card_width
  @card_width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3863
3864
3865
3866
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 3863

def update!(**args)
  @card_contents = args[:card_contents] if args.key?(:card_contents)
  @card_width = args[:card_width] if args.key?(:card_width)
end