import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { StrategyTrajectoryHorizonResponse, StrategyTrajectoryHorizonResponse$Outbound } from "./strategytrajectoryhorizonresponse.js"; export type StrategyTrajectoryResponse = { id: string; createdAt: string | null; updatedAt: string | null; startDate: string | null; endDate: string | null; priceCollarSigma: number | null; estimateUncertainty: boolean | null; interpolate: boolean | null; getMarketDrivers: boolean | null; getMovingAverages: boolean | null; strategyId: string; horizons?: Array | null | undefined; }; /** @internal */ export declare const StrategyTrajectoryResponse$inboundSchema: z.ZodType; /** @internal */ export type StrategyTrajectoryResponse$Outbound = { id: string; created_at: string | null; updated_at: string | null; start_date: string | null; end_date: string | null; price_collar_sigma: number | null; estimate_uncertainty: boolean | null; interpolate: boolean | null; get_market_drivers: boolean | null; get_moving_averages: boolean | null; strategy_id: string; horizons?: Array | null | undefined; }; /** @internal */ export declare const StrategyTrajectoryResponse$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 StrategyTrajectoryResponse$ { /** @deprecated use `StrategyTrajectoryResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `StrategyTrajectoryResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `StrategyTrajectoryResponse$Outbound` instead. */ type Outbound = StrategyTrajectoryResponse$Outbound; } export declare function strategyTrajectoryResponseToJSON(strategyTrajectoryResponse: StrategyTrajectoryResponse): string; export declare function strategyTrajectoryResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=strategytrajectoryresponse.d.ts.map