import * as $dara from '@darabonba/typescript'; export declare 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; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare 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; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }