import * as $dara from '@darabonba/typescript'; export declare class EnableEventRulesResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. * * > The status code 200 indicates that the call was successful. * * @example * 200 */ code?: string; /** * @remarks * The returned message. * * @example * success */ message?: string; /** * @remarks * The ID of the request. * * @example * 20F2896A-6684-4A04-8255-4155B1593C70 */ requestId?: string; /** * @remarks * Indicates whether the call was successful. The value true indicates a success. The value false indicates a failure. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }