Interface IInbox

The details of a DM inbox containing conversations and metadata.

interface IInbox {
    conversations: IConversation[];
    cursor: string;
    lastSeenEventId: string;
    trustedLastSeenEventId: string;
    untrustedLastSeenEventId: string;
}

Implemented by

Properties

conversations: IConversation[]

List of conversations in the inbox.

cursor: string

The cursor for pagination of conversations.

lastSeenEventId: string

The ID of the last seen event.

trustedLastSeenEventId: string

The ID of the last seen trusted event.

untrustedLastSeenEventId: string

The ID of the last seen untrusted event.