// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class UpdateGroupResponseBodyGroup extends $dara.Model { /** * @remarks * The description. * * @example * NewDev-Team */ comments?: string; /** * @remarks * The creation time. * * @example * 2015-01-23T12:33:18Z */ createDate?: string; /** * @remarks * The ID of the RAM user group. * * @example * g-FpMEHiMysofp**** */ groupId?: string; /** * @remarks * The name of the RAM user group. * * @example * NewDev-Team */ groupName?: string; /** * @remarks * The modification time. * * @example * 2015-01-23T12:33:18Z */ updateDate?: string; static names(): { [key: string]: string } { return { comments: 'Comments', createDate: 'CreateDate', groupId: 'GroupId', groupName: 'GroupName', updateDate: 'UpdateDate', }; } static types(): { [key: string]: any } { return { comments: 'string', createDate: 'string', groupId: 'string', groupName: 'string', updateDate: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateGroupResponseBody extends $dara.Model { /** * @remarks * The information about the RAM user group. */ group?: UpdateGroupResponseBodyGroup; /** * @remarks * The request ID. * * @example * EC6647CC-0A36-EC7A-BA72-CC81BF3DE182 */ requestId?: string; static names(): { [key: string]: string } { return { group: 'Group', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { group: UpdateGroupResponseBodyGroup, requestId: 'string', }; } validate() { if(this.group && typeof (this.group as any).validate === 'function') { (this.group as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }