Package com.google.cloud.speech.v1beta1
Interface AsyncRecognizeRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AsyncRecognizeRequest,AsyncRecognizeRequest.Builder
public interface AsyncRecognizeRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RecognitionAudiogetAudio()*Required* The audio data to be recognized.RecognitionAudioOrBuildergetAudioOrBuilder()*Required* The audio data to be recognized.RecognitionConfiggetConfig()*Required* Provides information to the recognizer that specifies how to process the request.RecognitionConfigOrBuildergetConfigOrBuilder()*Required* Provides information to the recognizer that specifies how to process the request.booleanhasAudio()*Required* The audio data to be recognized.booleanhasConfig()*Required* Provides information to the recognizer that specifies how to process the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasConfig
boolean hasConfig()
*Required* Provides information to the recognizer that specifies how to process the request.
.google.cloud.speech.v1beta1.RecognitionConfig config = 1;
-
getConfig
RecognitionConfig getConfig()
*Required* Provides information to the recognizer that specifies how to process the request.
.google.cloud.speech.v1beta1.RecognitionConfig config = 1;
-
getConfigOrBuilder
RecognitionConfigOrBuilder getConfigOrBuilder()
*Required* Provides information to the recognizer that specifies how to process the request.
.google.cloud.speech.v1beta1.RecognitionConfig config = 1;
-
hasAudio
boolean hasAudio()
*Required* The audio data to be recognized.
.google.cloud.speech.v1beta1.RecognitionAudio audio = 2;
-
getAudio
RecognitionAudio getAudio()
*Required* The audio data to be recognized.
.google.cloud.speech.v1beta1.RecognitionAudio audio = 2;
-
getAudioOrBuilder
RecognitionAudioOrBuilder getAudioOrBuilder()
*Required* The audio data to be recognized.
.google.cloud.speech.v1beta1.RecognitionAudio audio = 2;
-
-