WakeupInfo

data class WakeupInfo(    val word: String,     val boundary: WakeupInfo.Boundary,     val power: WakeupInfo.Power? = null)

The wakeup info

Parameters

word

the wakeup word

boundary

the boundary position for which word

power

the power, may be null if not available.

Constructors

Link copied to clipboard
fun WakeupInfo(    word: String,     boundary: WakeupInfo.Boundary,     power: WakeupInfo.Power? = null)

Types

Link copied to clipboard
data class Boundary(    val startPosition: Long,     val endPosition: Long,     val detectPosition: Long)
Link copied to clipboard
data class Power(val speech: Float, val noise: Float)

Properties

Link copied to clipboard
val boundary: WakeupInfo.Boundary
Link copied to clipboard
val power: WakeupInfo.Power? = null
Link copied to clipboard
val word: String