import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type CurrencyUsdRate = { /** * Currency Id * * @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. */ currencyId?: string | undefined; /** * Currency Symbol */ symbol: string; abbreviation?: string | undefined; rate: string; /** * Date and time of currency USD rate */ date: Date; }; /** @internal */ export declare const CurrencyUsdRate$inboundSchema: z.ZodType; /** @internal */ export type CurrencyUsdRate$Outbound = { currencyId?: string | undefined; symbol: string; abbreviation?: string | undefined; rate: string; date: string; }; /** @internal */ export declare const CurrencyUsdRate$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 CurrencyUsdRate$ { /** @deprecated use `CurrencyUsdRate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CurrencyUsdRate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CurrencyUsdRate$Outbound` instead. */ type Outbound = CurrencyUsdRate$Outbound; } export declare function currencyUsdRateToJSON(currencyUsdRate: CurrencyUsdRate): string; export declare function currencyUsdRateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=currencyusdrate.d.ts.map