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 WebhookWebhooksAllGlobals = { /** * The ID of your Unify application */ appId?: string | undefined; }; export type WebhookWebhooksAllRequest = { /** * Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. */ cursor?: string | null | undefined; /** * Number of results to return. Minimum 1, Maximum 200, Default 20 */ limit?: number | undefined; }; export type WebhookWebhooksAllResponse = { httpMeta: components.HTTPMetadata; /** * Webhooks */ getWebhooksResponse?: components.GetWebhooksResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const WebhookWebhooksAllGlobals$inboundSchema: z.ZodType; /** @internal */ export type WebhookWebhooksAllGlobals$Outbound = { appId?: string | undefined; }; /** @internal */ export declare const WebhookWebhooksAllGlobals$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 WebhookWebhooksAllGlobals$ { /** @deprecated use `WebhookWebhooksAllGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksAllGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksAllGlobals$Outbound` instead. */ type Outbound = WebhookWebhooksAllGlobals$Outbound; } export declare function webhookWebhooksAllGlobalsToJSON(webhookWebhooksAllGlobals: WebhookWebhooksAllGlobals): string; export declare function webhookWebhooksAllGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WebhookWebhooksAllRequest$inboundSchema: z.ZodType; /** @internal */ export type WebhookWebhooksAllRequest$Outbound = { cursor?: string | null | undefined; limit: number; }; /** @internal */ export declare const WebhookWebhooksAllRequest$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 WebhookWebhooksAllRequest$ { /** @deprecated use `WebhookWebhooksAllRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksAllRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksAllRequest$Outbound` instead. */ type Outbound = WebhookWebhooksAllRequest$Outbound; } export declare function webhookWebhooksAllRequestToJSON(webhookWebhooksAllRequest: WebhookWebhooksAllRequest): string; export declare function webhookWebhooksAllRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WebhookWebhooksAllResponse$inboundSchema: z.ZodType; /** @internal */ export type WebhookWebhooksAllResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetWebhooksResponse?: components.GetWebhooksResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const WebhookWebhooksAllResponse$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 WebhookWebhooksAllResponse$ { /** @deprecated use `WebhookWebhooksAllResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksAllResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WebhookWebhooksAllResponse$Outbound` instead. */ type Outbound = WebhookWebhooksAllResponse$Outbound; } export declare function webhookWebhooksAllResponseToJSON(webhookWebhooksAllResponse: WebhookWebhooksAllResponse): string; export declare function webhookWebhooksAllResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookwebhooksall.d.ts.map