Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AudioInput

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

Overview

Represents the natural speech audio to be processed.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3AudioInput

Returns a new instance of GoogleCloudDialogflowCxV3AudioInput.



250
251
252
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 250

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

Instance Attribute Details

#audioString

The natural language speech audio to be processed. A single request can contain up to 1 minute of speech audio data. The transcribed text cannot contain more than 256 bytes. For non-streaming audio detect intent, both config and audio must be provided. For streaming audio detect intent, config must be provided in the first request and audio must be provided in all following requests. Corresponds to the JSON property audio NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


243
244
245
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 243

def audio
  @audio
end

#configGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3InputAudioConfig

Instructs the speech recognizer on how to process the audio content. Corresponds to the JSON property config



248
249
250
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 248

def config
  @config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



255
256
257
258
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 255

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