Class WakeWordEndEventArgs
Wake word end event args. This is sent when the response (and potential intent) is received from the cloud. This is sent before the UserIntent event (if any).
Namespace: Anki.Vector.Events
Assembly: Anki.Vector.dll
Syntax
public class WakeWordEndEventArgs : WakeWordEventArgs
Properties
| Improve this Doc View SourceIntentHeard
Gets a value indicating whether the intent was heard. True if a sentence was recognized with an associated intent; false otherwise.
public bool IntentHeard { get; }
Property Type
Boolean |
IntentJson
Gets the intent and parameters as a JSON formatted string. This is empty if an intent was not heard (IntentHeard is false), or if the client does not have control. In the later case, a UserIntent event with the intent JSON data will be sent.
public string IntentJson { get; }
Property Type
String |