import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ListResourceWebhookEndpoint } from "../components/listresourcewebhookendpoint.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Filter by organization ID. */ export type QueryParamOrganizationId = string | Array; export type WebhooksListWebhookEndpointsRequest = { /** * Filter by organization ID. */ organizationId?: string | Array | null | undefined; /** * Page number, defaults to 1. */ page?: number | undefined; /** * Size of a page, defaults to 10. Maximum is 100. */ limit?: number | undefined; }; export type WebhooksListWebhookEndpointsResponse = { result: ListResourceWebhookEndpoint; }; /** @internal */ export type QueryParamOrganizationId$Outbound = string | Array; /** @internal */ export declare const QueryParamOrganizationId$outboundSchema: z.ZodMiniType; export declare function queryParamOrganizationIdToJSON(queryParamOrganizationId: QueryParamOrganizationId): string; /** @internal */ export type WebhooksListWebhookEndpointsRequest$Outbound = { organization_id?: string | Array | null | undefined; page: number; limit: number; }; /** @internal */ export declare const WebhooksListWebhookEndpointsRequest$outboundSchema: z.ZodMiniType; export declare function webhooksListWebhookEndpointsRequestToJSON(webhooksListWebhookEndpointsRequest: WebhooksListWebhookEndpointsRequest): string; /** @internal */ export declare const WebhooksListWebhookEndpointsResponse$inboundSchema: z.ZodMiniType; export declare function webhooksListWebhookEndpointsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookslistwebhookendpoints.d.ts.map