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 RecognitionAudio
getAudio()
*Required* The audio data to be recognized.RecognitionAudioOrBuilder
getAudioOrBuilder()
*Required* The audio data to be recognized.RecognitionConfig
getConfig()
*Required* Provides information to the recognizer that specifies how to process the request.RecognitionConfigOrBuilder
getConfigOrBuilder()
*Required* Provides information to the recognizer that specifies how to process the request.boolean
hasAudio()
*Required* The audio data to be recognized.boolean
hasConfig()
*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;
-
-