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 WebhookWebhooksAddGlobals = { /** * The ID of your Unify application */ appId?: string | undefined; }; export type WebhookWebhooksAddResponse = { httpMeta: components.HTTPMetadata; /** * Webhooks */ createWebhookResponse?: components.CreateWebhookResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const WebhookWebhooksAddGlobals$inboundSchema: z.ZodType; /** @internal */ export type WebhookWebhooksAddGlobals$Outbound = { appId?: string | undefined; }; /** @internal */ export declare const WebhookWebhooksAddGlobals$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 WebhookWebhooksAddGlobals$ { /** @deprecated use `WebhookWebhooksAddGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksAddGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksAddGlobals$Outbound` instead. */ type Outbound = WebhookWebhooksAddGlobals$Outbound; } export declare function webhookWebhooksAddGlobalsToJSON(webhookWebhooksAddGlobals: WebhookWebhooksAddGlobals): string; export declare function webhookWebhooksAddGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WebhookWebhooksAddResponse$inboundSchema: z.ZodType; /** @internal */ export type WebhookWebhooksAddResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; CreateWebhookResponse?: components.CreateWebhookResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const WebhookWebhooksAddResponse$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 WebhookWebhooksAddResponse$ { /** @deprecated use `WebhookWebhooksAddResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksAddResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksAddResponse$Outbound` instead. */ type Outbound = WebhookWebhooksAddResponse$Outbound; } export declare function webhookWebhooksAddResponseToJSON(webhookWebhooksAddResponse: WebhookWebhooksAddResponse): string; export declare function webhookWebhooksAddResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookwebhooksadd.d.ts.map