Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentMessageSelectItemInfo

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

Overview

Additional info about the select item for when it is triggered in a dialog.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageSelectItemInfo

Returns a new instance of GoogleCloudDialogflowV2IntentMessageSelectItemInfo.



8168
8169
8170
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8168

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

Instance Attribute Details

#keyString

Required. A unique key that will be sent back to the agent if this response is given. Corresponds to the JSON property key

Returns:

  • (String)


8160
8161
8162
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8160

def key
  @key
end

#synonymsArray<String>

Optional. A list of synonyms that can also be used to trigger this item in dialog. Corresponds to the JSON property synonyms

Returns:

  • (Array<String>)


8166
8167
8168
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8166

def synonyms
  @synonyms
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8173
8174
8175
8176
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8173

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