// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteAlertRuleRequest extends $dara.Model { /** * @remarks * The alert rule ID. * * For more information about how to obtain the ID of an alert rule, see [GetAlertRules](https://help.aliyun.com/document_detail/2612348.html). * * This parameter is required. * * @example * 123 */ alertId?: number; static names(): { [key: string]: string } { return { alertId: 'AlertId', }; } static types(): { [key: string]: any } { return { alertId: 'number', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }