@c8y/client
Version:
Client application programming interface to access the Cumulocity IoT-Platform REST services.
22 lines • 699 B
TypeScript
import { IApplicationReferences } from '../application/index.js';
import { ICustomPropertiesMap } from '../core/index.js';
export interface ICurrentTenant extends ICustomPropertiesMap {
name: string;
domainName: string;
allowCreateTenants: boolean;
/**
* Containing both owned and subscribed applications
*/
applications?: IApplicationReferences;
/**
* The parent tenant id
* Only available if current tenant has been requested with `withParent` parameter set to true.
*/
parent?: string;
self?: string;
}
export interface ICurrentTenantParams {
withParent?: boolean;
[key: string]: any;
}
//# sourceMappingURL=ICurrentTenant.d.ts.map