UNPKG

@openinc/parse-server-opendash

Version:
30 lines (29 loc) 968 B
import type { Tenant } from "./Tenant"; export interface SourceMetaAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; data?: any; description?: string; file?: Parse.File; location?: Parse.GeoPoint; name?: string; tenant?: Tenant; } export declare class SourceMeta extends Parse.Object<SourceMetaAttributes> { static className: string; constructor(data?: Partial<SourceMetaAttributes>); get data(): any | undefined; set data(value: any | undefined); get description(): string | undefined; set description(value: string | undefined); get file(): Parse.File | undefined; set file(value: Parse.File | undefined); get location(): Parse.GeoPoint | undefined; set location(value: Parse.GeoPoint | undefined); get name(): string | undefined; set name(value: string | undefined); get tenant(): Tenant | undefined; set tenant(value: Tenant | undefined); }