UNPKG

@openinc/parse-server-opendash

Version:
30 lines (29 loc) 1.06 kB
import type { Tenant } from "./Tenant"; import type { _Role } from "./_Role"; import type { _User } from "./_User"; export interface Notification_SettingAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; description?: string; key: string; label?: string; roles: Parse.Relation<Notification_Setting, _Role>; tenant?: Tenant; users: Parse.Relation<Notification_Setting, _User>; } export declare class Notification_Setting extends Parse.Object<Notification_SettingAttributes> { static className: string; constructor(data?: Partial<Notification_SettingAttributes>); get description(): string | undefined; set description(value: string | undefined); get key(): string; set key(value: string); get label(): string | undefined; set label(value: string | undefined); get roles(): Parse.Relation<Notification_Setting, _Role>; get tenant(): Tenant | undefined; set tenant(value: Tenant | undefined); get users(): Parse.Relation<Notification_Setting, _User>; }