Show / Hide Table of Contents

Class RecognizeResponse

The only message returned to the client by the Recognize method. It contains the result as zero or more sequential SpeechRecognitionResult messages.

Inheritance
System.Object
RecognizeResponse
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 RecognizeResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Results

Output only. Sequential list of transcription results corresponding to sequential portions of audio.

Declaration
[JsonProperty("results")]
public virtual IList<SpeechRecognitionResult> Results { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<SpeechRecognitionResult>

Implements

IDirectResponseSchema
Back to top