Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1DetectIntentRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1DetectIntentRequest
- 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
============================================================================ Requests and responses for custom methods. The request to detect user's intent.
Instance Attribute Summary collapse
-
#input_audio ⇒ String
The natural language speech audio to be processed.
-
#output_audio_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1OutputAudioConfig
Instructs the speech synthesizer how to generate the output audio content.
-
#output_audio_config_mask ⇒ String
Mask for output_audio_config indicating which settings in this request-level config should override speech synthesizer settings defined at agent-level.
-
#query_input ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1QueryInput
Represents the query input.
-
#query_params ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1QueryParameters
Represents the parameters of the conversational query.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1DetectIntentRequest
constructor
A new instance of GoogleCloudDialogflowV2beta1DetectIntentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1DetectIntentRequest
Returns a new instance of GoogleCloudDialogflowV2beta1DetectIntentRequest.
2662 2663 2664 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2662 def initialize(**args) update!(**args) end |
Instance Attribute Details
#input_audio ⇒ String
The natural language speech audio to be processed. This field
should be populated iff query_input
is set to an input audio config.
A single request can contain up to 1 minute of speech audio data.
Corresponds to the JSON property inputAudio
NOTE: Values are automatically base64 encoded/decoded in the client library.
2630 2631 2632 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2630 def input_audio @input_audio end |
#output_audio_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1OutputAudioConfig
Instructs the speech synthesizer how to generate the output audio content.
If this audio config is supplied in a request, it overrides all existing
text-to-speech settings applied to the agent.
Corresponds to the JSON property outputAudioConfig
2637 2638 2639 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2637 def output_audio_config @output_audio_config end |
#output_audio_config_mask ⇒ String
Mask for output_audio_config indicating which settings in this
request-level config should override speech synthesizer settings defined at
agent-level.
If unspecified or empty, output_audio_config replaces the agent-level
config in its entirety.
Corresponds to the JSON property outputAudioConfigMask
2646 2647 2648 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2646 def output_audio_config_mask @output_audio_config_mask end |
#query_input ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1QueryInput
Represents the query input. It can contain either:
- An audio config which instructs the speech recognizer how to process the speech audio.
- A conversational query in the form of text.
- An event that specifies which intent to trigger.
Corresponds to the JSON property
queryInput
2655 2656 2657 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2655 def query_input @query_input end |
#query_params ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1QueryParameters
Represents the parameters of the conversational query.
Corresponds to the JSON property queryParams
2660 2661 2662 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2660 def query_params @query_params end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2667 2668 2669 2670 2671 2672 2673 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2667 def update!(**args) @input_audio = args[:input_audio] if args.key?(:input_audio) @output_audio_config = args[:output_audio_config] if args.key?(:output_audio_config) @output_audio_config_mask = args[:output_audio_config_mask] if args.key?(:output_audio_config_mask) @query_input = args[:query_input] if args.key?(:query_input) @query_params = args[:query_params] if args.key?(:query_params) end |