UNPKG

@openinc/parse-server-opendash

Version:
25 lines (24 loc) 740 B
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); }