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 GetApiV3MetricsInstructionRateFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3MetricsInstructionRateFormat = ClosedEnum; export type GetApiV3MetricsInstructionRateRequest = { /** * Start Timestamp */ start?: number | null | undefined; /** * Subnet ID */ subnet?: string | null | undefined; /** * End Timestamp */ end?: number | null | undefined; format?: GetApiV3MetricsInstructionRateFormat | undefined; /** * Step value */ step?: number | undefined; }; /** @internal */ export declare const GetApiV3MetricsInstructionRateFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3MetricsInstructionRateFormat$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 GetApiV3MetricsInstructionRateFormat$ { /** @deprecated use `GetApiV3MetricsInstructionRateFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3MetricsInstructionRateFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3MetricsInstructionRateRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3MetricsInstructionRateRequest$Outbound = { start: number | null; subnet: string | null; end: number | null; format: string; step: number; }; /** @internal */ export declare const GetApiV3MetricsInstructionRateRequest$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 GetApiV3MetricsInstructionRateRequest$ { /** @deprecated use `GetApiV3MetricsInstructionRateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsInstructionRateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsInstructionRateRequest$Outbound` instead. */ type Outbound = GetApiV3MetricsInstructionRateRequest$Outbound; } export declare function getApiV3MetricsInstructionRateRequestToJSON(getApiV3MetricsInstructionRateRequest: GetApiV3MetricsInstructionRateRequest): string; export declare function getApiV3MetricsInstructionRateRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3metricsinstructionrate.d.ts.map