import * as $dara from '@darabonba/typescript'; export declare class PutCustomEventRuleResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. * * > The value 200 indicates that the call was successful. * * @example * 200 */ code?: string; /** * @remarks * The error message. * * @example * The request has failed due to a temporary failure of the server. */ message?: string; /** * @remarks * The ID of the request. * * @example * AD5DCD82-BD1C-405F-BAED-32302DE9F498 */ 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; }); }