//#region src/model/IAMUserControllerApiUser.d.ts type IIAMUserControllerApiUser = { id: string; username: string; displayName: string; firstName: string; lastName: string; email: string; /** * :model/ApiTenantSummary>} tenants */ "": Array; superAdmin: boolean; restricted: boolean; }; /** * @typedef {Object} IIAMUserControllerApiUser * @property {String} id * @property {String} username * @property {String} displayName * @property {String} firstName * @property {String} lastName * @property {String} email * @property {Array.} tenants * @property {Array.} auths * @property {Array.} groups * @property {Boolean} superAdmin * @property {Boolean} restricted */ /** * The IAMUserControllerApiUser model module. * @module model/IAMUserControllerApiUser * @type {IIAMUserControllerApiUser} */ declare class IAMUserControllerApiUser { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any): void; /** * Constructs a IAMUserControllerApiUser from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/IAMUserControllerApiUser} obj Optional instance to populate. * @return {module:model/IAMUserControllerApiUser} The populated IAMUserControllerApiUser instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to IAMUserControllerApiUser. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to IAMUserControllerApiUser. */ static validateJSON(data: any): boolean; id: string; username: string; displayName: string; firstName: string; lastName: string; email: string; tenants: any; auths: any; groups: any; superAdmin: boolean; restricted: boolean; } //#endregion export { IIAMUserControllerApiUser, IAMUserControllerApiUser as default };