// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class UpdateGroupRequest extends $dara.Model { /** * @remarks * The name of the RAM user group. * * @example * Dev-Team */ groupName?: string; /** * @remarks * The new description. * * The description can be up to 128 characters in length. * * @example * 测试团队 */ newComments?: string; /** * @remarks * The new display name of the RAM user group. * * The name can be up to 24 characters in length. * * @example * Test-Team */ newDisplayName?: string; /** * @remarks * The new name of the RAM user group. * * The name can be up to 64 characters in length and can contain letters, digits, periods (.), underscores (_), and hyphens (-). * * @example * Test-Team */ newGroupName?: string; static names(): { [key: string]: string } { return { groupName: 'GroupName', newComments: 'NewComments', newDisplayName: 'NewDisplayName', newGroupName: 'NewGroupName', }; } static types(): { [key: string]: any } { return { groupName: 'string', newComments: 'string', newDisplayName: 'string', newGroupName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }