class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1IntentMessageRbmText
Rich Business Messaging (RBM) text response with suggestions.
Attributes
rbm_suggestion[RW]
Optional. One or more suggestions to show to the user. Corresponds to the JSON property `rbmSuggestion` @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion>]
text[RW]
Required. Text sent and displayed to the user. Corresponds to the JSON property `text` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 12552 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 12557 def update!(**args) @rbm_suggestion = args[:rbm_suggestion] if args.key?(:rbm_suggestion) @text = args[:text] if args.key?(:text) end