Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction
- 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
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.
14163 14164 14165 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 14163 def initialize(**args) update!(**args) end |
Instance Attribute Details
#url ⇒ String
Required. URL
Corresponds to the JSON property url
14155 14156 14157 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 14155 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
14161 14162 14163 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 14161 def url_type_hint @url_type_hint end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14168 14169 14170 14171 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 14168 def update!(**args) @url = args[:url] if args.key?(:url) @url_type_hint = args[:url_type_hint] if args.key?(:url_type_hint) end |