@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
33 lines (32 loc) • 1.26 kB
TypeScript
import type { Maintenance_Media } from "./Maintenance_Media";
import type { Tenant } from "./Tenant";
import type { _Role } from "./_Role";
export interface Maintenance_Schedule_StepAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
description?: string;
fields?: any[];
media: Parse.Relation<Maintenance_Schedule_Step, Maintenance_Media>;
order: number;
roles: Parse.Relation<Maintenance_Schedule_Step, _Role>;
tenant?: Tenant;
title?: string;
}
export declare class Maintenance_Schedule_Step extends Parse.Object<Maintenance_Schedule_StepAttributes> {
static className: string;
constructor(data?: Partial<Maintenance_Schedule_StepAttributes>);
get description(): string | undefined;
set description(value: string | undefined);
get fields(): any[] | undefined;
set fields(value: any[] | undefined);
get media(): Parse.Relation<Maintenance_Schedule_Step, Maintenance_Media>;
get order(): number;
set order(value: number);
get roles(): Parse.Relation<Maintenance_Schedule_Step, _Role>;
get tenant(): Tenant | undefined;
set tenant(value: Tenant | undefined);
get title(): string | undefined;
set title(value: string | undefined);
}