import "../ApiClient-fBZ10h6n.mjs"; import { t as UserGroupType } from "../UserGroupType-C2C5nzSz.mjs"; //#region src/model/UserGroup.d.ts type IUserGroup = { value: string; ref: string; display: string; type: UserGroupType; }; /** * @typedef {Object} IUserGroup * @property {String} value * @property {String} ref * @property {String} display * @property {UserGroupType} type */ /** * The UserGroup model module. * @module model/UserGroup * @type {IUserGroup} */ declare class UserGroup { /** * 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 UserGroup 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/UserGroup} obj Optional instance to populate. * @return {module:model/UserGroup} The populated UserGroup instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to UserGroup. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to UserGroup. */ static validateJSON(data: any): boolean; value: string; ref: string; display: string; type: UserGroupType; } //#endregion export { IUserGroup, UserGroup as default };