@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
23 lines (22 loc) • 731 B
TypeScript
import type { BDE_Form } from "./BDE_Form";
export interface BDE_UnitAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
forms: Parse.Relation<BDE_Unit, BDE_Form>;
image?: Parse.File;
name?: string;
source?: string;
}
export declare class BDE_Unit extends Parse.Object<BDE_UnitAttributes> {
static className: string;
constructor(data?: Partial<BDE_UnitAttributes>);
get forms(): Parse.Relation<BDE_Unit, BDE_Form>;
get image(): Parse.File | undefined;
set image(value: Parse.File | undefined);
get name(): string | undefined;
set name(value: string | undefined);
get source(): string | undefined;
set source(value: string | undefined);
}