export NotificationAggregate

interface NotificationAggregate {
    created_at?: string;
    id?: null | string;
    short_id?: null | string;
    total_count?: number;
    unread_count?: number;
}

Properties

created_at?: string
id?: null | string
short_id?: null | string
total_count?: number
unread_count?: number