UNPKG

@openinc/parse-server-opendash

Version:
33 lines (32 loc) 915 B
import type { _User } from "./_User"; export interface NotificationAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; data: any; description?: string; iconPath?: string; isSent: boolean; read: boolean; title: string; user: _User; } export declare class Notification extends Parse.Object<NotificationAttributes> { static className: string; constructor(data?: Partial<NotificationAttributes>); get data(): any; set data(value: any); get description(): string | undefined; set description(value: string | undefined); get iconPath(): string | undefined; set iconPath(value: string | undefined); get isSent(): boolean; set isSent(value: boolean); get read(): boolean; set read(value: boolean); get title(): string; set title(value: string); get user(): _User; set user(value: _User); }