Class: Google::Apis::DialogflowV2beta1::EventInput
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::EventInput
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb
Overview
Events allow for matching intents by event name instead of the natural
language input. For instance, input <event:
name: “welcome_event”,
parameters: name: “Sam”
>
can trigger a personalized welcome response.
The parameter name
may be used by the agent in the response:
“Hello #welcome_event.name! What can I do for you today?”
.
Instance Attribute Summary collapse
-
#language_code ⇒ String
Required.
-
#name ⇒ String
Required.
-
#parameters ⇒ Hash<String,Object>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EventInput
constructor
A new instance of EventInput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ EventInput
Returns a new instance of EventInput
675 676 677 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 675 def initialize(**args) update!(**args) end |
Instance Attribute Details
#language_code ⇒ String
Required. The language of this query. See Language
Support for a list of the
currently supported language codes. Note that queries in the same session
do not necessarily need to specify the same language.
Corresponds to the JSON property languageCode
663 664 665 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 663 def language_code @language_code end |
#name ⇒ String
Required. The unique identifier of the event.
Corresponds to the JSON property name
668 669 670 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 668 def name @name end |
#parameters ⇒ Hash<String,Object>
Optional. The collection of parameters associated with the event.
Corresponds to the JSON property parameters
673 674 675 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 673 def parameters @parameters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
680 681 682 683 684 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 680 def update!(**args) @language_code = args[:language_code] if args.key?(:language_code) @name = args[:name] if args.key?(:name) @parameters = args[:parameters] if args.key?(:parameters) end |