@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
15 lines (14 loc) • 403 B
TypeScript
import type { Tenant } from "./Tenant";
export interface TenantMetaAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
tenant: Tenant;
}
export declare class TenantMeta extends Parse.Object<TenantMetaAttributes> {
static className: string;
constructor(data?: Partial<TenantMetaAttributes>);
get tenant(): Tenant;
set tenant(value: Tenant);
}