import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpdateWebhookEndpointRequest = { endpointId: string; updateWebhookEndpointPayload: components.UpdateWebhookEndpointPayload; }; /** @internal */ export declare const UpdateWebhookEndpointRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateWebhookEndpointRequest$Outbound = { endpoint_id: string; UpdateWebhookEndpointPayload: components.UpdateWebhookEndpointPayload$Outbound; }; /** @internal */ export declare const UpdateWebhookEndpointRequest$outboundSchema: z.ZodType; export declare function updateWebhookEndpointRequestToJSON(updateWebhookEndpointRequest: UpdateWebhookEndpointRequest): string; export declare function updateWebhookEndpointRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatewebhookendpoint.d.ts.map