@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
40 lines (39 loc) • 1.1 kB
TypeScript
import type { Tenant } from "./Tenant";
import type { _User } from "./_User";
export interface WidgetPresetAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
config: any;
description: string;
imageLink: string;
label: string;
layout: any[];
tags: any[];
tenant?: Tenant;
type: string;
user?: _User;
}
export declare class WidgetPreset extends Parse.Object<WidgetPresetAttributes> {
static className: string;
constructor(data?: Partial<WidgetPresetAttributes>);
get config(): any;
set config(value: any);
get description(): string;
set description(value: string);
get imageLink(): string;
set imageLink(value: string);
get label(): string;
set label(value: string);
get layout(): any[];
set layout(value: any[]);
get tags(): any[];
set tags(value: any[]);
get tenant(): Tenant | undefined;
set tenant(value: Tenant | undefined);
get type(): string;
set type(value: string);
get user(): _User | undefined;
set user(value: _User | undefined);
}