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