Show / Hide Table of Contents

Class LongRunningRecognizeMetadata

Describes the progress of a long-running LongRunningRecognize call. It is included in the metadata field of the Operation returned by the GetOperation call of the google::longrunning::Operations service.

Inheritance
System.Object
LongRunningRecognizeMetadata
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Speech.v2beta1.Data
Assembly: Google.Apis.Speech.v2beta1.dll
Syntax
public class LongRunningRecognizeMetadata : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

LastUpdateTime

Output only. Time of the most recent processing update.

Declaration
[JsonProperty("lastUpdateTime")]
public virtual object LastUpdateTime { get; set; }
Property Value
Type Description
System.Object

ProgressPercent

Output only. Approximate percentage of audio processed thus far. Guaranteed to be 100 when the audio is fully processed and the results are available.

Declaration
[JsonProperty("progressPercent")]
public virtual int? ProgressPercent { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

StartTime

Output only. Time when the request was received.

Declaration
[JsonProperty("startTime")]
public virtual object StartTime { get; set; }
Property Value
Type Description
System.Object

Uri

The URI of the audio file being transcribed. Empty if the audio was sent as byte content.

Declaration
[JsonProperty("uri")]
public virtual string Uri { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top