@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
22 lines (21 loc) • 717 B
TypeScript
import type { _User } from "./_User";
import { Tenant } from "./Tenant";
export interface Documentation_ConfigAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
lastCommitSha?: string;
tenant?: Tenant;
user?: _User;
}
export declare class Documentation_Config extends Parse.Object<Documentation_ConfigAttributes> {
static className: string;
constructor(data?: Partial<Documentation_ConfigAttributes>);
get lastCommitSha(): string | undefined;
set lastCommitSha(value: string | undefined);
get tenant(): Tenant | undefined;
set tenant(value: Tenant | undefined);
get user(): _User | undefined;
set user(value: _User | undefined);
}