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