Show / Hide Table of Contents

Class GoogleCloudDialogflowV2SpeechWordInfo

Information for a word recognized by the speech recognizer.

Inheritance
object
GoogleCloudDialogflowV2SpeechWordInfo
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dialogflow.v3beta1.Data
Assembly: Google.Apis.Dialogflow.v3beta1.dll
Syntax
public class GoogleCloudDialogflowV2SpeechWordInfo : IDirectResponseSchema

Properties

Confidence

The Speech confidence between 0.0 and 1.0 for this word. A higher number indicates an estimated greater likelihood that the recognized word is correct. The default of 0.0 is a sentinel value indicating that confidence was not set. This field is not guaranteed to be fully stable over time for the same audio input. Users should also not rely on it to always be provided.

Declaration
[JsonProperty("confidence")]
public virtual float? Confidence { get; set; }
Property Value
Type Description
float?

ETag

The ETag of the item.

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

EndOffset

Time offset relative to the beginning of the audio that corresponds to the end of the spoken word. This is an experimental feature and the accuracy of the time offset can vary.

Declaration
[JsonProperty("endOffset")]
public virtual object EndOffset { get; set; }
Property Value
Type Description
object

StartOffset

Time offset relative to the beginning of the audio that corresponds to the start of the spoken word. This is an experimental feature and the accuracy of the time offset can vary.

Declaration
[JsonProperty("startOffset")]
public virtual object StartOffset { get; set; }
Property Value
Type Description
object

Word

The word this info is for.

Declaration
[JsonProperty("word")]
public virtual string Word { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX