import * as $dara from '@darabonba/typescript'; export declare class DeleteAlertContactResponseBody extends $dara.Model { /** * @remarks * Indicates whether the call was successful. * * * `true`: The call was successful. * * `false`: The call failed. * * @example * true */ isSuccess?: boolean; /** * @remarks * The ID of the request. You can query logs and troubleshoot issues based on the ID. * * @example * 78901766-3806-4E96-8E47-CFEF59E4**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }