-
- All Implemented Interfaces:
public class VoiceEvent extends ApplicationEvent
VoiceEvent Schema model object.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enum
VoiceEvent.VoiceEventType
public class
VoiceEvent.Builder
-
Method Summary
Modifier and Type Method Description VoiceEvent.VoiceEventType
getVoiceEventType()
To identify if the event is triggered by the system or by a user interaction EventZoneValue
getEventZone()
The identify the zone from which user interaction happened String
getEventLabel()
The label of the button or the icon interacted with String
getSttOutput()
This property will allow us to identify the result of speech_to_text engine that translates what the user said using voice commands. String
getNlgOutput()
This property is used to understand how the system responds to a certain intent of the user. EventType
getEventType()
Get EventType. static VoiceEvent.Builder
builder()
-
Methods inherited from class com.telenav.sdk.datacollector.model.event.ApplicationEvent
getEventData
-
Methods inherited from class com.telenav.sdk.datacollector.model.event.Event
getFormatType, getLogContext
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getVoiceEventType
VoiceEvent.VoiceEventType getVoiceEventType()
To identify if the event is triggered by the system or by a user interaction
-
getEventZone
EventZoneValue getEventZone()
The identify the zone from which user interaction happened
-
getEventLabel
String getEventLabel()
The label of the button or the icon interacted with
-
getSttOutput
String getSttOutput()
This property will allow us to identify the result of speech_to_text engine that translates what the user said using voice commands.
-
getNlgOutput
String getNlgOutput()
This property is used to understand how the system responds to a certain intent of the user. It is extracted from the NLG output data.
-
getEventType
EventType getEventType()
Get EventType.
-
builder
static VoiceEvent.Builder builder()
-
-
-
-