// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class UpdateAlertRuleResponseBody extends $dara.Model { /** * @remarks * The ID of the alert rule. * * @example * 1234567 */ alertId?: number; /** * @remarks * The struct returned. * * @example * - */ data?: string; /** * @remarks * The ID of the request. * * @example * 6A9AEA84-7186-4D8D-B498-4585C6A2**** */ requestId?: string; static names(): { [key: string]: string } { return { alertId: 'AlertId', data: 'Data', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { alertId: 'number', data: 'string', requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }