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 WebhookEventLogsAllGlobals = { /** * The ID of your Unify application */ appId?: string | undefined; }; export type WebhookEventLogsAllRequest = { /** * 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; /** * Filter results */ filter?: components.WebhookEventLogsFilter | undefined; }; export type WebhookEventLogsAllResponse = { httpMeta: components.HTTPMetadata; /** * EventLogs */ getWebhookEventLogsResponse?: components.GetWebhookEventLogsResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const WebhookEventLogsAllGlobals$inboundSchema: z.ZodType; /** @internal */ export type WebhookEventLogsAllGlobals$Outbound = { appId?: string | undefined; }; /** @internal */ export declare const WebhookEventLogsAllGlobals$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 WebhookEventLogsAllGlobals$ { /** @deprecated use `WebhookEventLogsAllGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WebhookEventLogsAllGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WebhookEventLogsAllGlobals$Outbound` instead. */ type Outbound = WebhookEventLogsAllGlobals$Outbound; } export declare function webhookEventLogsAllGlobalsToJSON(webhookEventLogsAllGlobals: WebhookEventLogsAllGlobals): string; export declare function webhookEventLogsAllGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WebhookEventLogsAllRequest$inboundSchema: z.ZodType; /** @internal */ export type WebhookEventLogsAllRequest$Outbound = { cursor?: string | null | undefined; limit: number; filter?: components.WebhookEventLogsFilter$Outbound | undefined; }; /** @internal */ export declare const WebhookEventLogsAllRequest$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 WebhookEventLogsAllRequest$ { /** @deprecated use `WebhookEventLogsAllRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WebhookEventLogsAllRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WebhookEventLogsAllRequest$Outbound` instead. */ type Outbound = WebhookEventLogsAllRequest$Outbound; } export declare function webhookEventLogsAllRequestToJSON(webhookEventLogsAllRequest: WebhookEventLogsAllRequest): string; export declare function webhookEventLogsAllRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WebhookEventLogsAllResponse$inboundSchema: z.ZodType; /** @internal */ export type WebhookEventLogsAllResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetWebhookEventLogsResponse?: components.GetWebhookEventLogsResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const WebhookEventLogsAllResponse$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 WebhookEventLogsAllResponse$ { /** @deprecated use `WebhookEventLogsAllResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WebhookEventLogsAllResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WebhookEventLogsAllResponse$Outbound` instead. */ type Outbound = WebhookEventLogsAllResponse$Outbound; } export declare function webhookEventLogsAllResponseToJSON(webhookEventLogsAllResponse: WebhookEventLogsAllResponse): string; export declare function webhookEventLogsAllResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookeventlogsall.d.ts.map