Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion
- 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
Rich Business Messaging (RBM) suggestion. Suggestions allow user to easily select/click a predefined response or perform an action (like opening a web uri).
Instance Attribute Summary collapse
-
#action ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction
Rich Business Messaging (RBM) suggested client-side action that the user can choose from the card.
-
#reply ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply
Rich Business Messaging (RBM) suggested reply that the user can click instead of typing in their own response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion
constructor
A new instance of GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion
Returns a new instance of GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion.
17838 17839 17840 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 17838 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction
Rich Business Messaging (RBM) suggested client-side action that the user can
choose from the card.
Corresponds to the JSON property action
17830 17831 17832 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 17830 def action @action end |
#reply ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply
Rich Business Messaging (RBM) suggested reply that the user can click instead
of typing in their own response.
Corresponds to the JSON property reply
17836 17837 17838 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 17836 def reply @reply end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17843 17844 17845 17846 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 17843 def update!(**args) @action = args[:action] if args.key?(:action) @reply = args[:reply] if args.key?(:reply) end |