import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetAssetCalendarRequest = { /** * Future symbol */ symbol: string; /** * Start of trading calendar window (YYYY-MM-DD) */ startDate?: string | null | undefined; /** * End of trading calendar window (YYYY-MM-DD) */ endDate?: string | null | undefined; }; /** @internal */ export declare const GetAssetCalendarRequest$inboundSchema: z.ZodType; /** @internal */ export type GetAssetCalendarRequest$Outbound = { symbol: string; start_date?: string | null | undefined; end_date?: string | null | undefined; }; /** @internal */ export declare const GetAssetCalendarRequest$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 GetAssetCalendarRequest$ { /** @deprecated use `GetAssetCalendarRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetAssetCalendarRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetAssetCalendarRequest$Outbound` instead. */ type Outbound = GetAssetCalendarRequest$Outbound; } export declare function getAssetCalendarRequestToJSON(getAssetCalendarRequest: GetAssetCalendarRequest): string; export declare function getAssetCalendarRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getassetcalendar.d.ts.map