// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CreateGroupResponseBodyGroup extends $dara.Model { /** * @remarks * The description. * * @example * Dev-Team */ comments?: string; /** * @remarks * The creation time. * * @example * 2015-01-23T12:33:18Z */ createDate?: string; /** * @remarks * The ID of the user group. * * @example * g-FpMEHiMysofp**** */ groupId?: string; /** * @remarks * The name of the user group. * * @example * Dev-Team */ groupName?: string; static names(): { [key: string]: string } { return { comments: 'Comments', createDate: 'CreateDate', groupId: 'GroupId', groupName: 'GroupName', }; } static types(): { [key: string]: any } { return { comments: 'string', createDate: 'string', groupId: 'string', groupName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class CreateGroupResponseBody extends $dara.Model { /** * @remarks * The information about the group. */ group?: CreateGroupResponseBodyGroup; /** * @remarks * The request ID. * * @example * D3F0679E-9757-95DB-AF2D-04D5188C69C5 */ requestId?: string; static names(): { [key: string]: string } { return { group: 'Group', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { group: CreateGroupResponseBodyGroup, 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); } }