Show / Hide Table of Contents

Class SpeechRecognitionAlternative

Alternative hypotheses (a.k.a. n-best list).

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

Properties

Confidence

Output only. The confidence estimate between 0.0 and 1.0. A higher number indicates an estimated greater likelihood that the recognized words are correct. This field is set only for the top alternative of a non-streaming result or, of a streaming result where is_final=true. This field is not guaranteed to be accurate and users should not rely on it to be always provided. The default of 0.0 is a sentinel value indicating confidence was not set.

Declaration
[JsonProperty("confidence")]
public virtual float? Confidence { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

ETag

The ETag of the item.

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

Transcript

Output only. Transcript text representing the words that the user spoke.

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

Words

Output only. A list of word-specific information for each recognized word. Note: When enable_speaker_diarization is true, you will see all the words from the beginning of the audio.

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

Implements

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