Package com.google.cloud.speech.v1
Interface LongRunningRecognizeMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LongRunningRecognizeMetadata,LongRunningRecognizeMetadata.Builder
public interface LongRunningRecognizeMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetLastUpdateTime()Time of the most recent processing update.com.google.protobuf.TimestampOrBuildergetLastUpdateTimeOrBuilder()Time of the most recent processing update.intgetProgressPercent()Approximate percentage of audio processed thus far.com.google.protobuf.TimestampgetStartTime()Time when the request was received.com.google.protobuf.TimestampOrBuildergetStartTimeOrBuilder()Time when the request was received.StringgetUri()Output only.com.google.protobuf.ByteStringgetUriBytes()Output only.booleanhasLastUpdateTime()Time of the most recent processing update.booleanhasStartTime()Time when the request was received.-
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()
Approximate percentage of audio processed thus far. Guaranteed to be 100 when the audio is fully processed and the results are available.
int32 progress_percent = 1;- Returns:
- The progressPercent.
-
hasStartTime
boolean hasStartTime()
Time when the request was received.
.google.protobuf.Timestamp start_time = 2;- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.protobuf.Timestamp getStartTime()
Time when the request was received.
.google.protobuf.Timestamp start_time = 2;- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
Time when the request was received.
.google.protobuf.Timestamp start_time = 2;
-
hasLastUpdateTime
boolean hasLastUpdateTime()
Time of the most recent processing update.
.google.protobuf.Timestamp last_update_time = 3;- Returns:
- Whether the lastUpdateTime field is set.
-
getLastUpdateTime
com.google.protobuf.Timestamp getLastUpdateTime()
Time of the most recent processing update.
.google.protobuf.Timestamp last_update_time = 3;- Returns:
- The lastUpdateTime.
-
getLastUpdateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getLastUpdateTimeOrBuilder()
Time of the most recent processing update.
.google.protobuf.Timestamp last_update_time = 3;
-
getUri
String getUri()
Output only. The URI of the audio file being transcribed. Empty if the audio was sent as byte content.
string uri = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The uri.
-
getUriBytes
com.google.protobuf.ByteString getUriBytes()
Output only. The URI of the audio file being transcribed. Empty if the audio was sent as byte content.
string uri = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The bytes for uri.
-
-