// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteWebhookContactResponseBody extends $dara.Model { /** * @remarks * Indicates whether the webhook alert contact was deleted. * * * `true` * * `false` * * @example * true */ isSuccess?: boolean; /** * @remarks * The request ID. * * @example * C21AB7CF-B7AF-410F-BD61-82D1567F**** */ requestId?: string; static names(): { [key: string]: string } { return { isSuccess: 'IsSuccess', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { isSuccess: 'boolean', requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }