import * as $dara from '@darabonba/typescript'; export declare class StopAlertResponseBody extends $dara.Model { /** * @remarks * The message returned when the execution fails. * * @example * Success */ msg?: string; /** * @remarks * The execution result status. Valid values: * - True: The execution is successful. * - False: The execution failed. * * @example * True */ status?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }