Interface NotificationsModel

Information about a notification Model

interface NotificationsModel {
    addresseeId?: string;
    addresseeType?: "customer" | "project" | "user";
    consumer?: string;
    id?: string;
    link?: string;
    message?: string;
    status?: string;
    title?: string;
}

Properties

addresseeId?: string
addresseeType?: "customer" | "project" | "user"
consumer?: string
id?: string
link?: string
message?: string
status?: string
title?: string