@c8y/client
Version:
Client application programming interface to access the Cumulocity IoT-Platform REST services.
24 lines • 730 B
TypeScript
import { TenantStatus, ISupportUser } from './';
import { IApplicationReferences } from '../application';
export interface ITenant {
id?: string;
domain?: string;
status?: TenantStatus;
company?: string;
contactName?: string;
contactPhone?: string;
applications?: IApplicationReferences;
ownedApplications?: IApplicationReferences;
adminName?: string;
adminPass?: string;
adminEmail?: string;
sendPasswordResetEmail?: boolean;
parent?: string;
allowCreateTenants?: boolean;
storageLimitPerDevice?: number;
creationTime?: string;
tenantPolicyId?: number | string;
customProperties?: any;
supportUser?: ISupportUser;
}
//# sourceMappingURL=ITenant.d.ts.map