import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetForexPricesRequest = { /** * Forex code */ code: string; /** * Start of forex data window (YYYY-MM-DD) */ startDate?: string | null | undefined; /** * End of forex data window (YYYY-MM-DD) */ endDate?: string | null | undefined; /** * Return prices as foreign currency per USD. If false, prices will be returned as USD per foreign currency. */ foreignPerUsd?: boolean | undefined; }; /** @internal */ export declare const GetForexPricesRequest$inboundSchema: z.ZodType; /** @internal */ export type GetForexPricesRequest$Outbound = { code: string; start_date?: string | null | undefined; end_date?: string | null | undefined; foreign_per_usd: boolean; }; /** @internal */ export declare const GetForexPricesRequest$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 GetForexPricesRequest$ { /** @deprecated use `GetForexPricesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetForexPricesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetForexPricesRequest$Outbound` instead. */ type Outbound = GetForexPricesRequest$Outbound; } export declare function getForexPricesRequestToJSON(getForexPricesRequest: GetForexPricesRequest): string; export declare function getForexPricesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getforexprices.d.ts.map