Interface ICurrentTenant

interface ICurrentTenant {
    allowCreateTenants: boolean;
    applications?: IApplicationReferences;
    customProperties: ICustomProperties;
    domainName: string;
    name: string;
    parent?: string;
    self?: string;
}

Hierarchy (view full)

Properties

allowCreateTenants: boolean
applications?: IApplicationReferences

Containing both owned and subscribed applications

customProperties: ICustomProperties
domainName: string
name: string
parent?: string

The parent tenant id Only available if current tenant has been requested with withParent parameter set to true.

self?: string