import "../ApiClient-fBZ10h6n.mjs"; import { t as UserType } from "../UserType-BsLznrlV.mjs"; //#region src/model/ApiUser.d.ts type IApiUser = { type: UserType; /** * :model/GroupIdentifier>} groupList */ "": Array; groups: Array; username: string; email: string; superAdmin: boolean; id: string; name: string; description: string; firstName: string; lastName: string; }; /** * @typedef {Object} IApiUser * @property {UserType} type * @property {Array.} groupList * @property {Array.} groups * @property {String} username * @property {String} email * @property {Boolean} superAdmin * @property {String} id * @property {String} name * @property {String} description * @property {String} firstName * @property {String} lastName * @property {Array.} providers * @property {Array.} auths */ /** * The ApiUser model module. * @module model/ApiUser * @type {IApiUser} */ declare class ApiUser { /** * 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, type: any, username: any, email: any): void; /** * Constructs a ApiUser 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/ApiUser} obj Optional instance to populate. * @return {module:model/ApiUser} The populated ApiUser instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to ApiUser. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to ApiUser. */ static validateJSON(data: any): boolean; /** * Constructs a new ApiUser. * @alias module:model/ApiUser * @implements module:model/AbstractUser * @param {module:model/UserType} type - * @param {String} username - * @param {String} email - */ constructor(type: any, username: string, email: string); type: UserType; groupList: any; groups: any[]; username: string; email: string; superAdmin: boolean; id: string; name: string; description: string; firstName: string; lastName: string; providers: any; auths: any; } declare namespace ApiUser { let RequiredProperties: string[]; } //#endregion export { IApiUser, ApiUser as default };