UNPKG

@openinc/parse-server-opendash

Version:
24 lines (23 loc) 712 B
import type { Tenant } from "./Tenant"; export interface PermissionAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; description?: string; key: string; label?: string; tenant?: Tenant; } export declare class Permission extends Parse.Object<PermissionAttributes> { static className: string; constructor(data?: Partial<PermissionAttributes>); 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 tenant(): Tenant | undefined; set tenant(value: Tenant | undefined); }