import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetAssetClassIndexRequest = { /** * A list of Asset Class (sector) identifier requested. `ALL` can be used to query all asset classes indices at the same time */ assetClassSymbol: string; /** * The type of indexing methodology requested. Equal weight (`equalweight`) or risk-parity (`riskparity`) are supported */ methodology: string; /** * Start of the index data window (YYYY-MM-DD) - Index will start at 100 on that date */ startDate?: string | null | undefined; /** * End of index data window (YYYY-MM-DD) */ endDate?: string | null | undefined; /** * By default, time-series are returned using daily time frequency. Request resampled data using `weekly` or `monthly` as query parameter */ freq?: string | null | undefined; }; /** @internal */ export declare const GetAssetClassIndexRequest$inboundSchema: z.ZodType; /** @internal */ export type GetAssetClassIndexRequest$Outbound = { asset_class_symbol: string; methodology: string; start_date?: string | null | undefined; end_date?: string | null | undefined; freq?: string | null | undefined; }; /** @internal */ export declare const GetAssetClassIndexRequest$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 GetAssetClassIndexRequest$ { /** @deprecated use `GetAssetClassIndexRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetAssetClassIndexRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetAssetClassIndexRequest$Outbound` instead. */ type Outbound = GetAssetClassIndexRequest$Outbound; } export declare function getAssetClassIndexRequestToJSON(getAssetClassIndexRequest: GetAssetClassIndexRequest): string; export declare function getAssetClassIndexRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getassetclassindex.d.ts.map