Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentMessageSuggestion

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v2/classes.rb,
generated/google/apis/dialogflow_v2/representations.rb,
generated/google/apis/dialogflow_v2/representations.rb

Overview

The suggestion chip message that the user can tap to quickly post a reply to the conversation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageSuggestion

Returns a new instance of GoogleCloudDialogflowV2IntentMessageSuggestion.



2175
2176
2177
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2175

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#titleString

Required. The text shown the in the suggestion chip. Corresponds to the JSON property title

Returns:

  • (String)


2173
2174
2175
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2173

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2180
2181
2182
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2180

def update!(**args)
  @title = args[:title] if args.key?(:title)
end