Hide End Chat

Set the allowEndSession parameter in the UIConfiguration object to true to hide the End Chat button from the messaging conversation menu.

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

Important

This article applies to the following implementations:

UI SDKCore SDK
Hide the transcript option
1/**
2 * Represents conversation options configuration information.
3 *
4 * @property allowEndSession
5 */
6@Parcelize
7data class ConversationOptionsConfiguration(
8    val allowEndSession: Boolean = false // set this to true to show the end chat button
9) : Parcelable