@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
25 lines (24 loc) • 740 B
TypeScript
import type { Source } from "./Source";
import type { Tenant } from "./Tenant";
export interface Monitoring_DataHierachiesAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
hierarchies: any[];
name: string;
source: Source;
tenant: Tenant;
}
export declare class Monitoring_DataHierachies extends Parse.Object<Monitoring_DataHierachiesAttributes> {
static className: string;
constructor(data?: Partial<Monitoring_DataHierachiesAttributes>);
get hierarchies(): any[];
set hierarchies(value: any[]);
get name(): string;
set name(value: string);
get source(): Source;
set source(value: Source);
get tenant(): Tenant;
set tenant(value: Tenant);
}