com.google.cloud.dialogflow.v2.OutputAudioConfigOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
PROTO library for proto-google-cloud-dialogflow-v2
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/v2/audio_config.proto
package com.google.cloud.dialogflow.v2;
public interface OutputAudioConfigOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.OutputAudioConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. Audio encoding of the synthesized audio content.
*
*
* .google.cloud.dialogflow.v2.OutputAudioEncoding audio_encoding = 1;
*/
int getAudioEncodingValue();
/**
*
*
*
* Required. Audio encoding of the synthesized audio content.
*
*
* .google.cloud.dialogflow.v2.OutputAudioEncoding audio_encoding = 1;
*/
com.google.cloud.dialogflow.v2.OutputAudioEncoding getAudioEncoding();
/**
*
*
*
* Optional. The synthesis sample rate (in hertz) for this audio. If not
* provided, then the synthesizer will use the default sample rate based on
* the audio encoding. If this is different from the voice's natural sample
* rate, then the synthesizer will honor this request by converting to the
* desired sample rate (which might result in worse audio quality).
*
*
* int32 sample_rate_hertz = 2;
*/
int getSampleRateHertz();
/**
*
*
*
* Optional. Configuration of how speech should be synthesized.
*
*
* .google.cloud.dialogflow.v2.SynthesizeSpeechConfig synthesize_speech_config = 3;
*/
boolean hasSynthesizeSpeechConfig();
/**
*
*
*
* Optional. Configuration of how speech should be synthesized.
*
*
* .google.cloud.dialogflow.v2.SynthesizeSpeechConfig synthesize_speech_config = 3;
*/
com.google.cloud.dialogflow.v2.SynthesizeSpeechConfig getSynthesizeSpeechConfig();
/**
*
*
*
* Optional. Configuration of how speech should be synthesized.
*
*
* .google.cloud.dialogflow.v2.SynthesizeSpeechConfig synthesize_speech_config = 3;
*/
com.google.cloud.dialogflow.v2.SynthesizeSpeechConfigOrBuilder
getSynthesizeSpeechConfigOrBuilder();
}