/**
 *
 * An interface representing TenantInfo.
 * Describes a tenant
 *
 */
type TenantInfo = {
    /**
     * @member {string} [id] Unique identifier representing a tenant
     */
    id: string;
};

export type { TenantInfo };
