@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
41 lines (40 loc) • 1.35 kB
TypeScript
import type { Documentation_Category } from "./Documentation_Category";
import type { Tenant } from "./Tenant";
import type { _User } from "./_User";
export interface Documentation_DocumentAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
category: Documentation_Category;
content: string;
icon?: string;
locationPattern?: string;
locations: any[];
order: number;
tenant?: Tenant;
title: string;
user?: _User;
}
export declare class Documentation_Document extends Parse.Object<Documentation_DocumentAttributes> {
static className: string;
constructor(data?: Partial<Documentation_DocumentAttributes>);
get category(): Documentation_Category;
set category(value: Documentation_Category);
get content(): string;
set content(value: string);
get icon(): string | undefined;
set icon(value: string | undefined);
get locationPattern(): string | undefined;
set locationPattern(value: string | undefined);
get locations(): any[];
set locations(value: any[]);
get order(): number;
set order(value: number);
get tenant(): Tenant | undefined;
set tenant(value: Tenant | undefined);
get title(): string;
set title(value: string);
get user(): _User | undefined;
set user(value: _User | undefined);
}