import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WebhookEndpoint = { id: string; createdAt: Date; updatedAt: Date; name: string; url: string; partitionPattern: string | null; active: boolean; }; /** @internal */ export declare const WebhookEndpoint$inboundSchema: z.ZodType; /** @internal */ export type WebhookEndpoint$Outbound = { id: string; created_at: string; updated_at: string; name: string; url: string; partition_pattern: string | null; active: boolean; }; /** @internal */ export declare const WebhookEndpoint$outboundSchema: z.ZodType; export declare function webhookEndpointToJSON(webhookEndpoint: WebhookEndpoint): string; export declare function webhookEndpointFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookendpoint.d.ts.map