import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const GetApiV3MetricsLastRewardEventFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3MetricsLastRewardEventFormat = ClosedEnum; export type GetApiV3MetricsLastRewardEventRequest = { /** * End Timestamp */ end?: number | null | undefined; format?: GetApiV3MetricsLastRewardEventFormat | undefined; /** * Start Timestamp */ start?: number | null | undefined; /** * Float Step value */ step?: number | undefined; }; /** @internal */ export declare const GetApiV3MetricsLastRewardEventFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3MetricsLastRewardEventFormat$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiV3MetricsLastRewardEventFormat$ { /** @deprecated use `GetApiV3MetricsLastRewardEventFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3MetricsLastRewardEventFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3MetricsLastRewardEventRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3MetricsLastRewardEventRequest$Outbound = { end: number | null; format: string; start: number | null; step: number; }; /** @internal */ export declare const GetApiV3MetricsLastRewardEventRequest$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 GetApiV3MetricsLastRewardEventRequest$ { /** @deprecated use `GetApiV3MetricsLastRewardEventRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsLastRewardEventRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsLastRewardEventRequest$Outbound` instead. */ type Outbound = GetApiV3MetricsLastRewardEventRequest$Outbound; } export declare function getApiV3MetricsLastRewardEventRequestToJSON(getApiV3MetricsLastRewardEventRequest: GetApiV3MetricsLastRewardEventRequest): string; export declare function getApiV3MetricsLastRewardEventRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3metricslastrewardevent.d.ts.map