@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
24 lines (23 loc) • 638 B
TypeScript
import type { Tenant } from "./Tenant";
export interface VirtualKPIAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
label: string;
pipe: any;
template: any;
tenant?: Tenant;
}
export declare class VirtualKPI extends Parse.Object<VirtualKPIAttributes> {
static className: string;
constructor(data?: Partial<VirtualKPIAttributes>);
get label(): string;
set label(value: string);
get pipe(): any;
set pipe(value: any);
get template(): any;
set template(value: any);
get tenant(): Tenant | undefined;
set tenant(value: Tenant | undefined);
}