class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageQuickReplies

The quick replies response message.

Attributes

quick_replies[RW]

Optional. The collection of quick replies. Corresponds to the JSON property `quickReplies` @return [Array<String>]

title[RW]

Optional. The title of the collection of quick replies. Corresponds to the JSON property `title` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 11282
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_v2beta1/classes.rb, line 11287
def update!(**args)
  @quick_replies = args[:quick_replies] if args.key?(:quick_replies)
  @title = args[:title] if args.key?(:title)
end