Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Instance Attribute Summary collapse
-
#description ⇒ String
Corresponds to the JSON property
description. -
#footer ⇒ String
Corresponds to the JSON property
footer. -
#image ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageImage
Corresponds to the JSON property
image. -
#open_uri_action ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction
Corresponds to the JSON property
openUriAction. -
#title ⇒ String
Corresponds to the JSON property
title.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem
constructor
A new instance of GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem
Returns a new instance of GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem.
14859 14860 14861 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 14859 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Corresponds to the JSON property description
14837 14838 14839 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 14837 def description @description end |
#footer ⇒ String
Corresponds to the JSON property footer
14842 14843 14844 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 14842 def @footer end |
#image ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageImage
Corresponds to the JSON property image
14847 14848 14849 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 14847 def image @image end |
#open_uri_action ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction
Corresponds to the JSON property openUriAction
14852 14853 14854 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 14852 def open_uri_action @open_uri_action end |
#title ⇒ String
Corresponds to the JSON property title
14857 14858 14859 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 14857 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14864 14865 14866 14867 14868 14869 14870 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 14864 def update!(**args) @description = args[:description] if args.key?(:description) @footer = args[:footer] if args.key?(:footer) @image = args[:image] if args.key?(:image) @open_uri_action = args[:open_uri_action] if args.key?(:open_uri_action) @title = args[:title] if args.key?(:title) end |