// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { comments: 'Comments', groupName: 'GroupName', }; } static types(): { [key: string]: any } { return { comments: 'string', groupName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }