import * as $dara from '@darabonba/typescript'; export declare class CreateGroupRequest extends $dara.Model { /** * @remarks * The description. * * The value can be up to 128 characters in length. * * @example * Dev-Team */ comments?: string; /** * @remarks * The name of the user group. * * The name must be 1 to 64 characters in length and can contain letters, digits, periods (.), hyphens (-), and underscores (_). * * @example * Dev-Team */ groupName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }