com.google.cloud.speech.v1.LongRunningRecognizeRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grpc-google-cloud-speech-v1 Show documentation
Show all versions of grpc-google-cloud-speech-v1 Show documentation
GRPC library for grpc-google-cloud-speech-v1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/speech/v1/cloud_speech.proto
package com.google.cloud.speech.v1;
public interface LongRunningRecognizeRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.cloud.speech.v1.LongRunningRecognizeRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
boolean hasConfig();
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
com.google.cloud.speech.v1.RecognitionConfig getConfig();
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
com.google.cloud.speech.v1.RecognitionConfigOrBuilder getConfigOrBuilder();
/**
*
* *Required* The audio data to be recognized.
*
*
* .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
boolean hasAudio();
/**
*
* *Required* The audio data to be recognized.
*
*
* .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
com.google.cloud.speech.v1.RecognitionAudio getAudio();
/**
*
* *Required* The audio data to be recognized.
*
*
* .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
com.google.cloud.speech.v1.RecognitionAudioOrBuilder getAudioOrBuilder();
}