import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetLongTermForecastRequest = { /** * Future symbol */ symbol: string; /** * Number of months to forecast. _Default value_ : Shortest available term for requested symbol. */ horizon?: number | null | undefined; /** * Start of forecast window (YYYY-MM-DD). The returned * * @remarks * object will contain every forecast made between start_date and * end_date. _Default value_ : most recent date with forecasts */ startDate?: string | null | undefined; /** * End of forecast window (YYYY-MM-DD). The returned * * @remarks * object will contain every forecast made between start_date and * end_date. _Default value_ : most recent date with forecasts */ endDate?: string | null | undefined; /** * Which rollover method to use. _Default value_ : hist_vol */ rolloverType?: string | null | undefined; }; /** @internal */ export declare const GetLongTermForecastRequest$inboundSchema: z.ZodType; /** @internal */ export type GetLongTermForecastRequest$Outbound = { symbol: string; horizon?: number | null | undefined; start_date?: string | null | undefined; end_date?: string | null | undefined; rollover_type?: string | null | undefined; }; /** @internal */ export declare const GetLongTermForecastRequest$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 GetLongTermForecastRequest$ { /** @deprecated use `GetLongTermForecastRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetLongTermForecastRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetLongTermForecastRequest$Outbound` instead. */ type Outbound = GetLongTermForecastRequest$Outbound; } export declare function getLongTermForecastRequestToJSON(getLongTermForecastRequest: GetLongTermForecastRequest): string; export declare function getLongTermForecastRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getlongtermforecast.d.ts.map