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 */ export type GetConnectionResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: Connection; }; /** @internal */ export declare const GetConnectionResponse$inboundSchema: z.ZodType; /** @internal */ export type GetConnectionResponse$Outbound = { status_code: number; status: string; data: Connection$Outbound; }; /** @internal */ export declare const GetConnectionResponse$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 GetConnectionResponse$ { /** @deprecated use `GetConnectionResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetConnectionResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetConnectionResponse$Outbound` instead. */ type Outbound = GetConnectionResponse$Outbound; } export declare function getConnectionResponseToJSON(getConnectionResponse: GetConnectionResponse): string; export declare function getConnectionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getconnectionresponse.d.ts.map