Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1MatchIntentRequest

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

Overview

Request of MatchIntent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1MatchIntentRequest

Returns a new instance of GoogleCloudDialogflowCxV3beta1MatchIntentRequest.



6164
6165
6166
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6164

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

Instance Attribute Details

#query_inputGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryInput

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.

  1. Natural language speech audio to be processed. 4. An event to be triggered.

Corresponds to the JSON property queryInput



6157
6158
6159
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6157

def query_input
  @query_input
end

#query_paramsGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryParameters

Represents the parameters of a conversational query. Corresponds to the JSON property queryParams



6162
6163
6164
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6162

def query_params
  @query_params
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6169
6170
6171
6172
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6169

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