import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetUsdRateRequest = { /** * Currency Id, has format `ETHEREUM:${token}` or `ETHEREUM:${token}:${tokenId}` */ currencyId: string; /** * Date and time for getting currency USD rate (if not specified, returns actual rate) */ at: Date; }; /** @internal */ export declare const GetUsdRateRequest$inboundSchema: z.ZodType; /** @internal */ export type GetUsdRateRequest$Outbound = { currencyId: string; at: string; }; /** @internal */ export declare const GetUsdRateRequest$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 GetUsdRateRequest$ { /** @deprecated use `GetUsdRateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetUsdRateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetUsdRateRequest$Outbound` instead. */ type Outbound = GetUsdRateRequest$Outbound; } export declare function getUsdRateRequestToJSON(getUsdRateRequest: GetUsdRateRequest): string; export declare function getUsdRateRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getusdrate.d.ts.map