Member Junction
    Preparing search index...

    Represents a single notification item

    interface NotificationItem {
        conversationId: string;
        id: string;
        isRead: boolean;
        message: string;
        metadata?: Record<string, any>;
        priority: NotificationPriority;
        timestamp: Date;
        title: string;
        type: NotificationType;
    }
    Index

    Properties

    conversationId: string
    id: string
    isRead: boolean
    message: string
    metadata?: Record<string, any>
    timestamp: Date
    title: string