onTranscriptionStateChanged

Called when the transcription state changes.

The data object contains the new transcription state and configuration.

Code Example:


override fun onTranscriptionStateChanged(data: JSONObject) {
    val status = data.optString("status")
    Log.d("Meeting", "Transcription state: $status")
}

Parameters

data

a JSONObject with transcription state information

See also