import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Webhook, Webhook$Outbound } from "./webhook.js"; /** * Webhooks */ export type DeleteWebhookResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: Webhook; }; /** @internal */ export declare const DeleteWebhookResponse$inboundSchema: z.ZodType; /** @internal */ export type DeleteWebhookResponse$Outbound = { status_code: number; status: string; data: Webhook$Outbound; }; /** @internal */ export declare const DeleteWebhookResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace DeleteWebhookResponse$ { /** @deprecated use `DeleteWebhookResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DeleteWebhookResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DeleteWebhookResponse$Outbound` instead. */ type Outbound = DeleteWebhookResponse$Outbound; } export declare function deleteWebhookResponseToJSON(deleteWebhookResponse: DeleteWebhookResponse): string; export declare function deleteWebhookResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletewebhookresponse.d.ts.map