Result

class Result(val text: String, val feedbackType: String) : ASRState

Indicates that the final recognition result is available.

Parameters

text

The recognized speech converted into text.

feedbackType

The category or type of feedback (e.g., bug report, suggestion).

Constructors

Link copied to clipboard
fun Result(text: String, feedbackType: String)

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Indicates whether some other object is "equal to" this one.

Link copied to clipboard
open override fun hashCode(): Int

Returns a hash code value for the object.

Link copied to clipboard
open override fun toString(): String

Returns a string representation of the object.

Properties

Link copied to clipboard
val feedbackType: String
Link copied to clipboard
val text: String