masto
    Preparing search index...

    Interface Conversation

    Represents a conversation with "direct message" visibility.

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

    Properties

    accounts: mastodon.v1.Account[]

    Participants in the conversation.

    id: string

    Local database ID of the conversation.

    lastStatus?: Status | null

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

    unread: boolean

    Is the conversation currently marked as unread?