ConversationReply

sealed class ConversationReply : Parcelable

Represents a reply to a conversation identified by an id. A reply can be a ConversationTextReply which has a textual content.

Types

Link copied to clipboard
data class ConversationTextReply(val id: Uid<Conversation>, val content: String) : ConversationReply

Represents a textual reply content to a conversation identified by an id.

Properties

Link copied to clipboard
abstract val content: Any
Link copied to clipboard
abstract val id: Uid<Conversation>

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Inheritors

Link copied to clipboard