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 ChannelEndpointsControllerUpdateChannelEndpointRequest = { /** * The unique identifier of the channel endpoint */ identifier: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; updateChannelEndpointRequestDto: components.UpdateChannelEndpointRequestDto; }; export type ChannelEndpointsControllerUpdateChannelEndpointResponse = { headers: { [k: string]: Array; }; result: components.GetChannelEndpointResponseDto; }; /** @internal */ export type ChannelEndpointsControllerUpdateChannelEndpointRequest$Outbound = { identifier: string; "idempotency-key"?: string | undefined; UpdateChannelEndpointRequestDto: components.UpdateChannelEndpointRequestDto$Outbound; }; /** @internal */ export declare const ChannelEndpointsControllerUpdateChannelEndpointRequest$outboundSchema: z.ZodType; export declare function channelEndpointsControllerUpdateChannelEndpointRequestToJSON(channelEndpointsControllerUpdateChannelEndpointRequest: ChannelEndpointsControllerUpdateChannelEndpointRequest): string; /** @internal */ export declare const ChannelEndpointsControllerUpdateChannelEndpointResponse$inboundSchema: z.ZodType; export declare function channelEndpointsControllerUpdateChannelEndpointResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=channelendpointscontrollerupdatechannelendpoint.d.ts.map