tutti-api - v2.1.0
    Preparing search index...

    Interface Conversation

    interface Conversation {
        archivedAt?: string | null;
        blockList?: { blocked: boolean; blockedBy: boolean };
        id: string;
        item?: ConversationItem;
        latestMessage?: {
            content?: MessageContent;
            offset?: number;
            senderPublicAccountId?: string;
            timestamp?: string;
            type?: string;
        };
        participants?: Participant[];
        unreadMessageOffset?: number;
        unreadMessages?: number;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    archivedAt?: string | null
    blockList?: { blocked: boolean; blockedBy: boolean }
    id: string
    latestMessage?: {
        content?: MessageContent;
        offset?: number;
        senderPublicAccountId?: string;
        timestamp?: string;
        type?: string;
    }
    participants?: Participant[]
    unreadMessageOffset?: number
    unreadMessages?: number