QuickReply

data class QuickReply(    val body: String,     val replies: List<ContentData.Reply>,     val rawData: String = "") : ContentData

Let recipients tap, rather than type, to respond to the message. Represents the twilio/quick-reply content type.

Constructors

Link copied to clipboard
fun QuickReply(    body: String,     replies: List<ContentData.Reply>,     rawData: String = "")

Properties

Link copied to clipboard
val body: String

The text of the message you want to send. This is included as a regular text message.

Link copied to clipboard
open override val rawData: String

Full data as stringified JSON. Can be used for new content types and fields which are not supported in the current version of Conversations SDK.

Link copied to clipboard
val replies: List<ContentData.Reply>

Up to 3 buttons can be created for Quick Reply buttons. See Reply.