import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WebhookEndpointDto = { /** * Webhook URL */ url: string; /** * Optional channel identifier */ channel?: string | undefined; }; /** @internal */ export declare const WebhookEndpointDto$inboundSchema: z.ZodType; /** @internal */ export type WebhookEndpointDto$Outbound = { url: string; channel?: string | undefined; }; /** @internal */ export declare const WebhookEndpointDto$outboundSchema: z.ZodType; export declare function webhookEndpointDtoToJSON(webhookEndpointDto: WebhookEndpointDto): string; export declare function webhookEndpointDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookendpointdto.d.ts.map