com.google.cloud.dialogflow.v2.VoiceSelectionParamsOrBuilder 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 VoiceSelectionParamsOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.VoiceSelectionParams)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Optional. The name of the voice. If not set, the service will choose a
* voice based on the other parameters such as language_code and gender.
*
*
* string name = 1;
*/
java.lang.String getName();
/**
*
*
*
* Optional. The name of the voice. If not set, the service will choose a
* voice based on the other parameters such as language_code and gender.
*
*
* string name = 1;
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Optional. The preferred gender of the voice. If not set, the service will
* choose a voice based on the other parameters such as language_code and
* name. Note that this is only a preference, not requirement. If a
* voice of the appropriate gender is not available, the synthesizer should
* substitute a voice with a different gender rather than failing the request.
*
*
* .google.cloud.dialogflow.v2.SsmlVoiceGender ssml_gender = 2;
*/
int getSsmlGenderValue();
/**
*
*
*
* Optional. The preferred gender of the voice. If not set, the service will
* choose a voice based on the other parameters such as language_code and
* name. Note that this is only a preference, not requirement. If a
* voice of the appropriate gender is not available, the synthesizer should
* substitute a voice with a different gender rather than failing the request.
*
*
* .google.cloud.dialogflow.v2.SsmlVoiceGender ssml_gender = 2;
*/
com.google.cloud.dialogflow.v2.SsmlVoiceGender getSsmlGender();
}