Hide Transcripts

Use the TranscriptConfiguration parameter in the UIConfiguration class to hide the transcript button in the participant client menu.

This article applies to the following implementations:

UI SDKCore SDK

This feature requires version 1.7.0 or later of the Enhanced In-App Chat SDK.

Important

Hide the transcript option
1// Hide the transcript option from the menu. Setting the allowTranscriptDownload property to true hides the transcript option from the end user.
2@Parcelize
3data class TranscriptConfiguration(
4    val allowTranscriptDownload: Boolean = true
5) : Parcelable