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