@arkasuryawan/gp-interfaces
Version:
Geonet Properties Data Interfaces
15 lines (14 loc) • 369 B
TypeScript
import { AuditInterface } from ".";
export declare type NotificationType = "NEW" | "READED";
export interface NotificationInterface extends AuditInterface {
headline?: string;
description?: string;
link?: string;
userIdReaded?: string[];
status?: string;
type?: string;
to?: {
type: "USER" | "TENANT";
id: string;
}[];
}