import "../ApiClient-fBZ10h6n.mjs"; import { t as Email_default } from "../Email-Ce1n1pAv.mjs"; import { t as Meta_default } from "../Meta-D6s3GBjs.mjs"; import { t as Name_default } from "../Name-DllfVQYn.mjs"; //#region src/model/ScimUser.d.ts type IScimUser = { schemas: Array; baseUrn: string; /** * :model/ScimExtension>} extensions */ "": any; meta: Meta_default; id: string; externalId: string; resourceType: string; primaryEmailAddress: Email_default; active: boolean; userName: string; name: Name_default; }; /** * @typedef {Object} IScimUser * @property {Array.} schemas * @property {String} baseUrn * @property {Object.} extensions * @property {Meta} meta * @property {String} id * @property {String} externalId * @property {String} resourceType * @property {Email} primaryEmailAddress * @property {Boolean} active * @property {Array.} emails * @property {String} userName * @property {Name} name * @property {Array.} groups */ /** * The ScimUser model module. * @module model/ScimUser * @type {IScimUser} */ declare class ScimUser { /** * 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, meta: any): void; /** * Constructs a ScimUser 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/ScimUser} obj Optional instance to populate. * @return {module:model/ScimUser} The populated ScimUser instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to ScimUser. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to ScimUser. */ static validateJSON(data: any): boolean; /** * Constructs a new ScimUser. * Scim core schema. * @alias module:model/ScimUser * @implements module:model/ScimResource * @implements module:model/BaseResourceScimResource * @param {module:model/Meta} meta - */ constructor(meta: any); schemas: string[]; baseUrn: string; extensions: any; meta: Meta_default; id: string; externalId: string; resourceType: string; primaryEmailAddress: Email_default; active: boolean; emails: any; userName: string; name: Name_default; groups: any; } declare namespace ScimUser { let RequiredProperties: string[]; } //#endregion export { IScimUser, ScimUser as default };