Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2DetectIntentRequest

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

The request to detect user's intent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2DetectIntentRequest

Returns a new instance of GoogleCloudDialogflowV2DetectIntentRequest.



9595
9596
9597
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9595

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

Instance Attribute Details

#input_audioString

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.

Returns:

  • (String)


9565
9566
9567
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9565

def input_audio
  @input_audio
end

#output_audio_configGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2OutputAudioConfig

Instructs the speech synthesizer on 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



9572
9573
9574
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9572

def output_audio_config
  @output_audio_config
end

#output_audio_config_maskString

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

Returns:

  • (String)


9580
9581
9582
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9580

def output_audio_config_mask
  @output_audio_config_mask
end

#query_inputGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2QueryInput

Represents the query input. It can contain either: 1. An audio config which instructs the speech recognizer how to process the speech audio. 2. A conversational query in the form of text. 3. An event that specifies which intent to trigger. Corresponds to the JSON property queryInput



9588
9589
9590
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9588

def query_input
  @query_input
end

#query_paramsGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2QueryParameters

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



9593
9594
9595
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9593

def query_params
  @query_params
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9600
9601
9602
9603
9604
9605
9606
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9600

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