ConversationDraft

data class ConversationDraft(val text: String, val emojiTags: List<List<String>> = emptyList(), val spans: List<DraftSpan> = emptyList(), val replyTo: MessageId? = null, val attachmentOperationIds: List<String> = emptyList(), val updatedAt: Long = 0)

Portable draft state shared by Android and future Apple clients.

Constructors

Link copied to clipboard
constructor(text: String, emojiTags: List<List<String>> = emptyList(), spans: List<DraftSpan> = emptyList(), replyTo: MessageId? = null, attachmentOperationIds: List<String> = emptyList(), updatedAt: Long = 0)

Properties

Link copied to clipboard

Ordered durable media dependencies.

Link copied to clipboard

Exact custom-emoji tag arrays.

Link copied to clipboard

Optional logical message being replied to.

Link copied to clipboard

Validated non-overlapping portable ranges.

Link copied to clipboard

Unsent message text.

Link copied to clipboard

Last local update in Unix seconds.