Package com.twilio.conversations.content

Types

Link copied to clipboard
interface ContentData

Represents one data type in rich content template. For more details see: https://www.twilio.com/docs/content-api/content-types-overview

Link copied to clipboard
data class ContentTemplate(    val sid: String,     val friendlyName: String,     val dateCreated: Date,     val dateUpdated: Date,     val variables: List<ContentTemplateVariable>,     val variants: Map<String, ContentData>)

Rich content template.

Link copied to clipboard
data class ContentTemplateVariable(val name: String, val value: String)

Represents rich content template variable.