@gphone/sdk
    Preparing search index...

    Interface UIConversation

    interface UIConversation {
        citizenid: string;
        created_at: string | Date;
        id: number;
        is_group: boolean;
        last_message?: Message;
        lastMessage: string;
        lastMessageAt: string;
        name?: string;
        participants?: Participant[];
        status?: "deleted" | "active" | "moderated" | "archived";
        target: string;
        targetAvatar?: string;
        targetName: string;
        unread_count?: number;
        unreadCount: number;
        updated_at: string | Date;
    }

    Hierarchy

    • Conversation
      • UIConversation
    Index
    citizenid: string
    created_at: string | Date
    id: number
    is_group: boolean
    last_message?: Message
    lastMessage: string
    lastMessageAt: string
    name?: string
    participants?: Participant[]
    status?: "deleted" | "active" | "moderated" | "archived"
    target: string
    targetAvatar?: string
    targetName: string
    unread_count?: number
    unreadCount: number
    updated_at: string | Date