Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard
- 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
Browse Carousel Card for Actions on Google. https://developers.google.com/ actions/assistant/responses#browsing_carousel
Instance Attribute Summary collapse
-
#image_display_options ⇒ String
Optional.
-
#items ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard
constructor
A new instance of GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard
Returns a new instance of GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard.
8837 8838 8839 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 8837 def initialize(**args) update!(**args) end |
Instance Attribute Details
#image_display_options ⇒ String
Optional. Settings for displaying the image. Applies to every image in items.
Corresponds to the JSON property imageDisplayOptions
8829 8830 8831 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 8829 def @image_display_options end |
#items ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem>
Required. List of items in the Browse Carousel Card. Minimum of two items,
maximum of ten.
Corresponds to the JSON property items
8835 8836 8837 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 8835 def items @items end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8842 8843 8844 8845 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 8842 def update!(**args) @image_display_options = args[:image_display_options] if args.key?(:image_display_options) @items = args[:items] if args.key?(:items) end |