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
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.v1p1beta1.Data
Assembly: Google.Apis.Speech.v1p1beta1.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

Time of the most recent processing update.

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

ProgressPercent

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

Time when the request was received.

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

Implements

IDirectResponseSchema
Back to top