Interface Conversation

Represents a conversation with "direct message" visibility.

interface Conversation {
    accounts: mastodon.v1.Account[];
    id: string;
    lastStatus?: null | Status;
    unread: boolean;
}

Properties

accounts: mastodon.v1.Account[]

Participants in the conversation.

id: string

Local database ID of the conversation.

lastStatus?: null | Status

The last status in the conversation, to be used for optional display.

unread: boolean

Is the conversation currently marked as unread?