import "../ApiClient-fBZ10h6n.mjs"; import { t as UserType } from "../UserType-BsLznrlV.mjs"; //#region src/model/AbstractUser.d.ts type IAbstractUser = { 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} IAbstractUser * @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 */ /** * The AbstractUser model module. * @module model/AbstractUser * @type {IAbstractUser} */ declare class AbstractUser { /** * 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 AbstractUser 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/AbstractUser} obj Optional instance to populate. * @return {module:model/AbstractUser} The populated AbstractUser instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to AbstractUser. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to AbstractUser. */ static validateJSON(data: any): boolean; /** * Constructs a new AbstractUser. * @alias 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; } declare namespace AbstractUser { let RequiredProperties: string[]; } //#endregion export { IAbstractUser, AbstractUser as default };