UNPKG

@openinc/parse-server-opendash

Version:
31 lines (30 loc) 921 B
import type { Tenant } from "./Tenant"; import type { _User } from "./_User"; export interface AssetsAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; context?: string | undefined; description: string; file: Parse.File; meta?: any | undefined; tenant?: Tenant | undefined; user: _User; } export declare class Assets extends Parse.Object<AssetsAttributes> { static className: string; constructor(data?: Partial<AssetsAttributes>); get context(): string | undefined; set context(value: string | undefined); get description(): string; set description(value: string); get file(): Parse.File; set file(value: Parse.File); get meta(): any | undefined; set meta(value: any | undefined); get tenant(): Tenant | undefined; set tenant(value: Tenant | undefined); get user(): _User; set user(value: _User); }