import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WebhookWebhooksDeleteGlobals = { /** * The ID of your Unify application */ appId?: string | undefined; }; export type WebhookWebhooksDeleteRequest = { /** * JWT Webhook token that represents the unifiedApi and applicationId associated to the event source. */ id: string; }; export type WebhookWebhooksDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Webhooks */ deleteWebhookResponse?: components.DeleteWebhookResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const WebhookWebhooksDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type WebhookWebhooksDeleteGlobals$Outbound = { appId?: string | undefined; }; /** @internal */ export declare const WebhookWebhooksDeleteGlobals$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 WebhookWebhooksDeleteGlobals$ { /** @deprecated use `WebhookWebhooksDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksDeleteGlobals$Outbound` instead. */ type Outbound = WebhookWebhooksDeleteGlobals$Outbound; } export declare function webhookWebhooksDeleteGlobalsToJSON(webhookWebhooksDeleteGlobals: WebhookWebhooksDeleteGlobals): string; export declare function webhookWebhooksDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WebhookWebhooksDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type WebhookWebhooksDeleteRequest$Outbound = { id: string; }; /** @internal */ export declare const WebhookWebhooksDeleteRequest$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 WebhookWebhooksDeleteRequest$ { /** @deprecated use `WebhookWebhooksDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksDeleteRequest$Outbound` instead. */ type Outbound = WebhookWebhooksDeleteRequest$Outbound; } export declare function webhookWebhooksDeleteRequestToJSON(webhookWebhooksDeleteRequest: WebhookWebhooksDeleteRequest): string; export declare function webhookWebhooksDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WebhookWebhooksDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type WebhookWebhooksDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteWebhookResponse?: components.DeleteWebhookResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const WebhookWebhooksDeleteResponse$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 WebhookWebhooksDeleteResponse$ { /** @deprecated use `WebhookWebhooksDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksDeleteResponse$Outbound` instead. */ type Outbound = WebhookWebhooksDeleteResponse$Outbound; } export declare function webhookWebhooksDeleteResponseToJSON(webhookWebhooksDeleteResponse: WebhookWebhooksDeleteResponse): string; export declare function webhookWebhooksDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookwebhooksdelete.d.ts.map