import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetStrategyForecastRequest = { /** * Strategy UUID id */ strategyId: string; /** * Return a concatenated version of the requested trajectories as if it was coming from a single model. Some restrictions apply */ concatenateTrajectories?: boolean | undefined; }; /** @internal */ export declare const GetStrategyForecastRequest$inboundSchema: z.ZodType; /** @internal */ export type GetStrategyForecastRequest$Outbound = { strategy_id: string; concatenate_trajectories: boolean; }; /** @internal */ export declare const GetStrategyForecastRequest$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 GetStrategyForecastRequest$ { /** @deprecated use `GetStrategyForecastRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetStrategyForecastRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetStrategyForecastRequest$Outbound` instead. */ type Outbound = GetStrategyForecastRequest$Outbound; } export declare function getStrategyForecastRequestToJSON(getStrategyForecastRequest: GetStrategyForecastRequest): string; export declare function getStrategyForecastRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getstrategyforecast.d.ts.map