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