import "../ApiClient-fBZ10h6n.mjs"; import { t as SchemaAttributeMutability } from "../SchemaAttributeMutability-CxFBIbFd.mjs"; import { t as SchemaAttributeReturned } from "../SchemaAttributeReturned-CYiIDX1C.mjs"; import { t as SchemaAttributeType } from "../SchemaAttributeType-BUjj2StW.mjs"; import { t as SchemaAttributeUniqueness } from "../SchemaAttributeUniqueness-CGRGT14X.mjs"; //#region src/model/SchemaAttribute.d.ts type ISchemaAttribute = { /** * :model/SchemaAttribute>} attributes */ "": Array; urn: string; name: string; type: SchemaAttributeType; multiValued: boolean; description: string; required: boolean; canonicalValues: Array; caseExact: boolean; mutability: SchemaAttributeMutability; returned: SchemaAttributeReturned; uniqueness: SchemaAttributeUniqueness; referenceTypes: Array; accessor: any; scimResourceIdReference: boolean; }; /** * @typedef {Object} ISchemaAttribute * @property {Array.} attributes * @property {String} urn * @property {String} name * @property {SchemaAttributeType} type * @property {Array.} subAttributes * @property {Boolean} multiValued * @property {String} description * @property {Boolean} required * @property {Array.} canonicalValues * @property {Boolean} caseExact * @property {SchemaAttributeMutability} mutability * @property {SchemaAttributeReturned} returned * @property {SchemaAttributeUniqueness} uniqueness * @property {Array.} referenceTypes * @property {Object} accessor * @property {Boolean} scimResourceIdReference */ /** * The SchemaAttribute model module. * @module model/SchemaAttribute * @type {ISchemaAttribute} */ declare class SchemaAttribute { /** * 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 SchemaAttribute 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/SchemaAttribute} obj Optional instance to populate. * @return {module:model/SchemaAttribute} The populated SchemaAttribute instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to SchemaAttribute. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to SchemaAttribute. */ static validateJSON(data: any): boolean; attributes: any; urn: string; name: string; type: SchemaAttributeType; subAttributes: any; multiValued: boolean; description: string; required: boolean; canonicalValues: string[]; caseExact: boolean; mutability: SchemaAttributeMutability; returned: SchemaAttributeReturned; uniqueness: SchemaAttributeUniqueness; referenceTypes: string[]; accessor: any; scimResourceIdReference: boolean; } //#endregion export { ISchemaAttribute, SchemaAttribute as default };