class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3MatchIntentRequest
Request of MatchIntent.
Attributes
query_input[RW]
Represents the query input. It can contain one of: 1. A conversational query in the form of text. 2. An intent query that specifies which intent to trigger.
-
Natural language speech audio to be processed. 4. An event to be triggered.
Corresponds to the JSON property `queryInput` @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryInput]
query_params[RW]
Represents the parameters of a conversational query. Corresponds to the JSON property `queryParams` @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryParameters]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 3062 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_v3/classes.rb, line 3067 def update!(**args) @query_input = args[:query_input] if args.key?(:query_input) @query_params = args[:query_params] if args.key?(:query_params) end