UNPKG

@openinc/parse-server-opendash

Version:
36 lines (35 loc) 1.1 kB
import type { Tenant } from "./Tenant"; export interface Maintenance_Kanban_StateAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; color: string; description?: string | undefined; enabled: boolean; isFinished: boolean; isInbox: boolean; label: string; order: number; tenant?: Tenant | undefined; } export declare class Maintenance_Kanban_State extends Parse.Object<Maintenance_Kanban_StateAttributes> { static className: string; constructor(data?: Partial<Maintenance_Kanban_StateAttributes>); get color(): string; set color(value: string); get description(): string | undefined; set description(value: string | undefined); get enabled(): boolean; set enabled(value: boolean); get isFinished(): boolean; set isFinished(value: boolean); get isInbox(): boolean; set isInbox(value: boolean); get label(): string; set label(value: string); get order(): number; set order(value: number); get tenant(): Tenant | undefined; set tenant(value: Tenant | undefined); }