import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetSupplyPhenologyRequest = { /** * Asset symbol */ symbol: string; /** * Country name or region */ countryRegion?: string | null | undefined; }; /** @internal */ export declare const GetSupplyPhenologyRequest$inboundSchema: z.ZodType; /** @internal */ export type GetSupplyPhenologyRequest$Outbound = { symbol: string; country_region?: string | null | undefined; }; /** @internal */ export declare const GetSupplyPhenologyRequest$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 GetSupplyPhenologyRequest$ { /** @deprecated use `GetSupplyPhenologyRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetSupplyPhenologyRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetSupplyPhenologyRequest$Outbound` instead. */ type Outbound = GetSupplyPhenologyRequest$Outbound; } export declare function getSupplyPhenologyRequestToJSON(getSupplyPhenologyRequest: GetSupplyPhenologyRequest): string; export declare function getSupplyPhenologyRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getsupplyphenology.d.ts.map