// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteMonitorGroupRequest extends $dara.Model { /** * @remarks * The ID of the API group. This ID is generated by the system and globally unique. * * This parameter is required. * * @example * 42925e7f5209438186d5560239af5286 */ groupId?: string; /** * @remarks * The ID of the monitoring group. * * @example * 166636221 */ rawMonitorGroupId?: number; securityToken?: string; static names(): { [key: string]: string } { return { groupId: 'GroupId', rawMonitorGroupId: 'RawMonitorGroupId', securityToken: 'SecurityToken', }; } static types(): { [key: string]: any } { return { groupId: 'string', rawMonitorGroupId: 'number', securityToken: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }