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