UNPKG

@openinc/parse-server-opendash

Version:
30 lines (29 loc) 1.04 kB
import type { Tenant } from "./Tenant"; export interface SourceMetaAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; data?: any | undefined; description?: string | undefined; file?: Parse.File | undefined; location?: Parse.GeoPoint | undefined; name?: string | undefined; tenant?: Tenant | undefined; } 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); }