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 ChannelConnectionsControllerGetChannelConnectionByIdentifierRequest = { /** * The unique identifier of the channel connection */ identifier: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type ChannelConnectionsControllerGetChannelConnectionByIdentifierResponse = { headers: { [k: string]: Array; }; result: components.GetChannelConnectionResponseDto; }; /** @internal */ export type ChannelConnectionsControllerGetChannelConnectionByIdentifierRequest$Outbound = { identifier: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const ChannelConnectionsControllerGetChannelConnectionByIdentifierRequest$outboundSchema: z.ZodType; export declare function channelConnectionsControllerGetChannelConnectionByIdentifierRequestToJSON(channelConnectionsControllerGetChannelConnectionByIdentifierRequest: ChannelConnectionsControllerGetChannelConnectionByIdentifierRequest): string; /** @internal */ export declare const ChannelConnectionsControllerGetChannelConnectionByIdentifierResponse$inboundSchema: z.ZodType; export declare function channelConnectionsControllerGetChannelConnectionByIdentifierResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=channelconnectionscontrollergetchannelconnectionbyidentifier.d.ts.map