@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
51 lines (50 loc) • 1.44 kB
TypeScript
import type { _User } from "./_User";
export interface ReportAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
description?: string;
icon?: string;
iconColor: string;
images: any[];
items: any[];
language?: string;
masterData: any;
name?: string;
options: any;
template: Parse.File;
title?: string;
type: string;
user: _User;
}
export declare class Report extends Parse.Object<ReportAttributes> {
static className: string;
constructor(data?: Partial<ReportAttributes>);
get description(): string | undefined;
set description(value: string | undefined);
get icon(): string | undefined;
set icon(value: string | undefined);
get iconColor(): string;
set iconColor(value: string);
get images(): any[];
set images(value: any[]);
get items(): any[];
set items(value: any[]);
get language(): string | undefined;
set language(value: string | undefined);
get masterData(): any;
set masterData(value: any);
get name(): string | undefined;
set name(value: string | undefined);
get options(): any;
set options(value: any);
get template(): Parse.File;
set template(value: Parse.File);
get title(): string | undefined;
set title(value: string | undefined);
get type(): string;
set type(value: string);
get user(): _User;
set user(value: _User);
}