com.google.cloud.speech.v1.LongRunningRecognizeMetadataOrBuilder 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 LongRunningRecognizeMetadataOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.cloud.speech.v1.LongRunningRecognizeMetadata)
com.google.protobuf.MessageOrBuilder {
/**
*
* 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;
*/
int getProgressPercent();
/**
*
* Time when the request was received.
*
*
* .google.protobuf.Timestamp start_time = 2;
*/
boolean hasStartTime();
/**
*
* Time when the request was received.
*
*
* .google.protobuf.Timestamp start_time = 2;
*/
com.google.protobuf.Timestamp getStartTime();
/**
*
* Time when the request was received.
*
*
* .google.protobuf.Timestamp start_time = 2;
*/
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder();
/**
*
* Time of the most recent processing update.
*
*
* .google.protobuf.Timestamp last_update_time = 3;
*/
boolean hasLastUpdateTime();
/**
*
* Time of the most recent processing update.
*
*
* .google.protobuf.Timestamp last_update_time = 3;
*/
com.google.protobuf.Timestamp getLastUpdateTime();
/**
*
* Time of the most recent processing update.
*
*
* .google.protobuf.Timestamp last_update_time = 3;
*/
com.google.protobuf.TimestampOrBuilder getLastUpdateTimeOrBuilder();
}