@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
17 lines (16 loc) • 471 B
TypeScript
export interface ML_DataSelectionAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
label?: string;
pipe: any;
}
export declare class ML_DataSelection extends Parse.Object<ML_DataSelectionAttributes> {
static className: string;
constructor(data?: Partial<ML_DataSelectionAttributes>);
get label(): string | undefined;
set label(value: string | undefined);
get pipe(): any;
set pipe(value: any);
}