Package com.google.cloud.speech.v2
Interface BatchRecognizeTranscriptionMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BatchRecognizeTranscriptionMetadata
,BatchRecognizeTranscriptionMetadata.Builder
public interface BatchRecognizeTranscriptionMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.rpc.Status
getError()
Error if one was encountered.com.google.rpc.StatusOrBuilder
getErrorOrBuilder()
Error if one was encountered.int
getProgressPercent()
How much of the file has been transcribed so far.String
getUri()
The Cloud Storage URI to which recognition results will be written.com.google.protobuf.ByteString
getUriBytes()
The Cloud Storage URI to which recognition results will be written.boolean
hasError()
Error if one was encountered.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProgressPercent
int getProgressPercent()
How much of the file has been transcribed so far.
int32 progress_percent = 1;
- Returns:
- The progressPercent.
-
hasError
boolean hasError()
Error if one was encountered.
.google.rpc.Status error = 2;
- Returns:
- Whether the error field is set.
-
getError
com.google.rpc.Status getError()
Error if one was encountered.
.google.rpc.Status error = 2;
- Returns:
- The error.
-
getErrorOrBuilder
com.google.rpc.StatusOrBuilder getErrorOrBuilder()
Error if one was encountered.
.google.rpc.Status error = 2;
-
getUri
String getUri()
The Cloud Storage URI to which recognition results will be written.
string uri = 3;
- Returns:
- The uri.
-
getUriBytes
com.google.protobuf.ByteString getUriBytes()
The Cloud Storage URI to which recognition results will be written.
string uri = 3;
- Returns:
- The bytes for uri.
-
-