import * as $dara from '@darabonba/typescript'; export declare class PutEventRuleResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. * * > The status code 200 indicates that the call was successful. * * @example * 200 */ code?: string; /** * @remarks * The number of event-triggered alert rules that were created or modified. * * @example * 1 */ data?: string; /** * @remarks * The error message. * * @example * The Request is not authorization. */ message?: string; /** * @remarks * The ID of the request. * * @example * 0B47C47B-E68A-4429-BB23-370E91889C7D */ requestId?: string; /** * @remarks * Indicates whether the call was successful. Valid values: * * * true: The call was successful. * * false: The call failed. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }