Hide Attachments

Use the AttachmentConfiguration parameter in the UIConfiguration class to hide the attachment option from the input options.

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 attachment option
1// Hide the attachment option from the input options. Setting the endUserToAgent property to true hides the attachment option from the end user.
2@Parcelize
3data class AttachmentConfiguration(
4    val endUserToAgent: Boolean = true
5) : Parcelable