import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Connection, Connection$Outbound } from "./connection.js"; /** * Connection created */ export type CreateConnectionResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: Connection; }; /** @internal */ export declare const CreateConnectionResponse$inboundSchema: z.ZodType; /** @internal */ export type CreateConnectionResponse$Outbound = { status_code: number; status: string; data: Connection$Outbound; }; /** @internal */ export declare const CreateConnectionResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CreateConnectionResponse$ { /** @deprecated use `CreateConnectionResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateConnectionResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateConnectionResponse$Outbound` instead. */ type Outbound = CreateConnectionResponse$Outbound; } export declare function createConnectionResponseToJSON(createConnectionResponse: CreateConnectionResponse): string; export declare function createConnectionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createconnectionresponse.d.ts.map