//#region src/model/IAMTenantAccessControllerApiUserTenantAccess.d.ts type IIAMTenantAccessControllerApiUserTenantAccess = { id: string; username: string; displayName: string; description: string; /** * :model/IAMTenantAccessControllerApiGroup>} groups */ "": Array; }; /** * @typedef {Object} IIAMTenantAccessControllerApiUserTenantAccess * @property {String} id * @property {String} username * @property {String} displayName * @property {String} description * @property {Array.} groups * @property {Array.} auths */ /** * The IAMTenantAccessControllerApiUserTenantAccess model module. * @module model/IAMTenantAccessControllerApiUserTenantAccess * @type {IIAMTenantAccessControllerApiUserTenantAccess} */ declare class IAMTenantAccessControllerApiUserTenantAccess { /** * 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 IAMTenantAccessControllerApiUserTenantAccess 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/IAMTenantAccessControllerApiUserTenantAccess} obj Optional instance to populate. * @return {module:model/IAMTenantAccessControllerApiUserTenantAccess} The populated IAMTenantAccessControllerApiUserTenantAccess instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to IAMTenantAccessControllerApiUserTenantAccess. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to IAMTenantAccessControllerApiUserTenantAccess. */ static validateJSON(data: any): boolean; id: string; username: string; displayName: string; description: string; groups: any; auths: any; } //#endregion export { IIAMTenantAccessControllerApiUserTenantAccess, IAMTenantAccessControllerApiUserTenantAccess as default };