Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v3beta1/classes.rb,
generated/google/apis/dialogflow_v3beta1/representations.rb,
generated/google/apis/dialogflow_v3beta1/representations.rb
Overview
Actions on Google action to open a given url.
Instance Attribute Summary collapse
-
#url ⇒ String
Required.
-
#url_type_hint ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction
constructor
A new instance of GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction
Returns a new instance of GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction.
7666 7667 7668 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 7666 def initialize(**args) update!(**args) end |
Instance Attribute Details
#url ⇒ String
Required. URL
Corresponds to the JSON property url
7658 7659 7660 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 7658 def url @url end |
#url_type_hint ⇒ String
Optional. Specifies the type of viewer that is used when opening the URL.
Defaults to opening via web browser.
Corresponds to the JSON property urlTypeHint
7664 7665 7666 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 7664 def url_type_hint @url_type_hint end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7671 7672 7673 7674 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 7671 def update!(**args) @url = args[:url] if args.key?(:url) @url_type_hint = args[:url_type_hint] if args.key?(:url_type_hint) end |