UNPKG

@openinc/parse-server-opendash

Version:
23 lines (22 loc) 754 B
import type { Maintenance_Item } from "./Maintenance_Item"; import type { Source } from "./Source"; import type { Tenant } from "./Tenant"; export interface Maintenance_SourceMetaAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; item?: Maintenance_Item; source: Source; tenant: Tenant; } export declare class Maintenance_SourceMeta extends Parse.Object<Maintenance_SourceMetaAttributes> { static className: string; constructor(data?: Partial<Maintenance_SourceMetaAttributes>); get item(): Maintenance_Item | undefined; set item(value: Maintenance_Item | undefined); get source(): Source; set source(value: Source); get tenant(): Tenant; set tenant(value: Tenant); }