public sealed class SpeechWordInfo : IMessage<SpeechWordInfo>, IEquatable<SpeechWordInfo>, IDeepCloneable<SpeechWordInfo>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Cloud Dialogflow v2 API class SpeechWordInfo.
Information for a word recognized by the speech recognizer.
Implements
IMessage<SpeechWordInfo>, IEquatable<SpeechWordInfo>, IDeepCloneable<SpeechWordInfo>, IBufferMessage, IMessageNamespace
Google.Cloud.Dialogflow.V2Assembly
Google.Cloud.Dialogflow.V2.dll
Constructors
SpeechWordInfo()
public SpeechWordInfo()
SpeechWordInfo(SpeechWordInfo)
public SpeechWordInfo(SpeechWordInfo other)
Parameter | |
---|---|
Name | Description |
other | SpeechWordInfo |
Properties
Confidence
public float Confidence { get; set; }
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.
Property Value | |
---|---|
Type | Description |
Single |
EndOffset
public Duration EndOffset { get; set; }
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.
Property Value | |
---|---|
Type | Description |
Duration |
StartOffset
public Duration StartOffset { get; set; }
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.
Property Value | |
---|---|
Type | Description |
Duration |
Word
public string Word { get; set; }
The word this info is for.
Property Value | |
---|---|
Type | Description |
String |