//#region src/model/IAMGroupControllerApiCreateGroupRequest.d.ts type IIAMGroupControllerApiCreateGroupRequest = { name: string; description: string; membersId: Array; }; /** * @typedef {Object} IIAMGroupControllerApiCreateGroupRequest * @property {String} name * @property {String} description * @property {Array.} membersId */ /** * The IAMGroupControllerApiCreateGroupRequest model module. * @module model/IAMGroupControllerApiCreateGroupRequest * @type {IIAMGroupControllerApiCreateGroupRequest} */ declare class IAMGroupControllerApiCreateGroupRequest { /** * 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, name: any): void; /** * Constructs a IAMGroupControllerApiCreateGroupRequest 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/IAMGroupControllerApiCreateGroupRequest} obj Optional instance to populate. * @return {module:model/IAMGroupControllerApiCreateGroupRequest} The populated IAMGroupControllerApiCreateGroupRequest instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to IAMGroupControllerApiCreateGroupRequest. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to IAMGroupControllerApiCreateGroupRequest. */ static validateJSON(data: any): boolean; /** * Constructs a new IAMGroupControllerApiCreateGroupRequest. * @alias module:model/IAMGroupControllerApiCreateGroupRequest * @param {String} name - */ constructor(name: string); name: string; description: string; membersId: string[]; } declare namespace IAMGroupControllerApiCreateGroupRequest { let RequiredProperties: string[]; } //#endregion export { IIAMGroupControllerApiCreateGroupRequest, IAMGroupControllerApiCreateGroupRequest as default };