onTranscriptionText

Called when a new transcription text segment is received.

Code Example:


override fun onTranscriptionText(data: TranscriptionText) {
    Log.d("Meeting", "${data.participantName}: ${data.text}")
}

Parameters

data

the TranscriptionText containing the transcribed text, participant information, and timestamp

See also