Conversation

@Serializable
data class Conversation(val conversationId: String, val participants: List<Account>, val isUnread: Boolean, val lastStatus: Status? = null) : Pageable

Represents a conversation with "direct message" visibility.

Constructors

Link copied to clipboard
constructor(conversationId: String, participants: List<Account>, isUnread: Boolean, lastStatus: Status? = null)

Properties

Link copied to clipboard
Link copied to clipboard
open override val id: String
Link copied to clipboard

Is the conversation currently marked as unread?

Link copied to clipboard
val lastStatus: Status? = null

The last status in the conversation, optionally used for display.

Link copied to clipboard

Participants in the conversation.