class Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction

Rich Business Messaging (RBM) suggested client-side action that the user can choose from the card.

Attributes

dial[RW]

Opens the user's default dialer app with the specified phone number but does not dial automatically. Corresponds to the JSON property `dial` @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionDial]

open_url[RW]

Opens the user's default web browser app to the specified uri If the user has an app installed that is registered as the default handler for the URL, then this app will be opened instead, and its icon will be used in the suggested action UI. Corresponds to the JSON property `openUrl` @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri]

postback_data[RW]

Opaque payload that the Dialogflow receives in a user event when the user taps the suggested action. This data will be also forwarded to webhook to allow performing custom business logic. Corresponds to the JSON property `postbackData` @return [String]

share_location[RW]

Opens the device's location chooser so the user can pick a location to send back to the agent. Corresponds to the JSON property `shareLocation` @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionShareLocation]

text[RW]

Text to display alongside the action. Corresponds to the JSON property `text` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 13160
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_v3/classes.rb, line 13165
def update!(**args)
  @dial = args[:dial] if args.key?(:dial)
  @open_url = args[:open_url] if args.key?(:open_url)
  @postback_data = args[:postback_data] if args.key?(:postback_data)
  @share_location = args[:share_location] if args.key?(:share_location)
  @text = args[:text] if args.key?(:text)
end