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