class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction
Actions on Google
action to open a given url.
Attributes
url[RW]
Required. URL Corresponds to the JSON property `url` @return [String]
url_type_hint[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 9410 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 9415 def update!(**args) @url = args[:url] if args.key?(:url) @url_type_hint = args[:url_type_hint] if args.key?(:url_type_hint) end