import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type GetVolumeChartRequest = { /** * Collection ID */ id: string; /** * Time period for aggregation */ period: models.OlapPeriod; /** * Number of data points to return */ size: number; /** * Optionally, the date-time of the last point of the graph. Defaults to current time. */ endTime?: Date | undefined; }; /** @internal */ export declare const GetVolumeChartRequest$inboundSchema: z.ZodType; /** @internal */ export type GetVolumeChartRequest$Outbound = { id: string; period: string; size: number; endTime?: string | undefined; }; /** @internal */ export declare const GetVolumeChartRequest$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 GetVolumeChartRequest$ { /** @deprecated use `GetVolumeChartRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetVolumeChartRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetVolumeChartRequest$Outbound` instead. */ type Outbound = GetVolumeChartRequest$Outbound; } export declare function getVolumeChartRequestToJSON(getVolumeChartRequest: GetVolumeChartRequest): string; export declare function getVolumeChartRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getvolumechart.d.ts.map