import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomMapping, CustomMapping$Outbound } from "./custommapping.js"; /** * Custom mapping */ export type GetCustomMappingsResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: Array; }; /** @internal */ export declare const GetCustomMappingsResponse$inboundSchema: z.ZodType; /** @internal */ export type GetCustomMappingsResponse$Outbound = { status_code: number; status: string; data: Array; }; /** @internal */ export declare const GetCustomMappingsResponse$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 GetCustomMappingsResponse$ { /** @deprecated use `GetCustomMappingsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetCustomMappingsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetCustomMappingsResponse$Outbound` instead. */ type Outbound = GetCustomMappingsResponse$Outbound; } export declare function getCustomMappingsResponseToJSON(getCustomMappingsResponse: GetCustomMappingsResponse): string; export declare function getCustomMappingsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getcustommappingsresponse.d.ts.map