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"; /** * Connections */ export type GetConnectionsResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: Array; }; /** @internal */ export declare const GetConnectionsResponse$inboundSchema: z.ZodType; /** @internal */ export type GetConnectionsResponse$Outbound = { status_code: number; status: string; data: Array; }; /** @internal */ export declare const GetConnectionsResponse$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 GetConnectionsResponse$ { /** @deprecated use `GetConnectionsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetConnectionsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetConnectionsResponse$Outbound` instead. */ type Outbound = GetConnectionsResponse$Outbound; } export declare function getConnectionsResponseToJSON(getConnectionsResponse: GetConnectionsResponse): string; export declare function getConnectionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getconnectionsresponse.d.ts.map