@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
23 lines (22 loc) • 754 B
TypeScript
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);
}