import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetModelOutputRequest = { /** * Future symbol */ symbol: string; /** * Model name. */ model?: string | 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; }; /** @internal */ export declare const GetModelOutputRequest$inboundSchema: z.ZodType; /** @internal */ export type GetModelOutputRequest$Outbound = { symbol: string; model?: string | null | undefined; start_date?: string | null | undefined; end_date?: string | null | undefined; }; /** @internal */ export declare const GetModelOutputRequest$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 GetModelOutputRequest$ { /** @deprecated use `GetModelOutputRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetModelOutputRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetModelOutputRequest$Outbound` instead. */ type Outbound = GetModelOutputRequest$Outbound; } export declare function getModelOutputRequestToJSON(getModelOutputRequest: GetModelOutputRequest): string; export declare function getModelOutputRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getmodeloutput.d.ts.map