@cpod/sdk - v0.2.7
    Preparing search index...

    Interface Notification

    Type definitions for the Notifications module

    interface Notification {
        id: string;
        user_id: string;
        title: string;
        body: string;
        is_read: boolean;
        is_archived: boolean;
        created_at: string;
        updated_at: string;
        data?: Record<string, unknown>;
    }
    Index

    Properties

    id: string
    user_id: string
    title: string
    body: string
    is_read: boolean
    is_archived: boolean
    created_at: string
    updated_at: string
    data?: Record<string, unknown>