WordInfo

@Serializable
data class WordInfo(val word: String? = null, val startOffset: String? = null, val endOffset: String? = null)

Information about a single recognized word.

Constructors

Link copied to clipboard
constructor(word: String? = null, startOffset: String? = null, endOffset: String? = null)

Properties

Link copied to clipboard
val endOffset: String? = null

End offset in time of the word relative to the start of the audio.

Link copied to clipboard
val startOffset: String? = null

Start offset in time of the word relative to the start of the audio.

Link copied to clipboard
val word: String? = null

Transcript of the word.