on Transcription State Changed
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")
}
Content copied to clipboard
Parameters
data
a JSONObject with transcription state information
See also
Meeting.stopTranscription()