Documentation
    Preparing search index...

    Interface DmConversation

    A normalized direct or group conversation summary.

    interface DmConversation {
        id: string;
        kind: "group" | "direct";
        participants: DmPeer[];
        subject?: string;
        unread: number;
        updatedAt?: number;
    }
    Index

    Properties

    id: string
    kind: "group" | "direct"
    participants: DmPeer[]
    subject?: string
    unread: number
    updatedAt?: number