import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetApiV3MetricsIngressBandwidthRequest = { /** * End Timestamp */ end?: number | null | undefined; /** * Start Timestamp */ start?: number | null | undefined; /** * Float Step value */ step?: number | undefined; }; /** @internal */ export declare const GetApiV3MetricsIngressBandwidthRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3MetricsIngressBandwidthRequest$Outbound = { end: number | null; start: number | null; step: number; }; /** @internal */ export declare const GetApiV3MetricsIngressBandwidthRequest$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 GetApiV3MetricsIngressBandwidthRequest$ { /** @deprecated use `GetApiV3MetricsIngressBandwidthRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsIngressBandwidthRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsIngressBandwidthRequest$Outbound` instead. */ type Outbound = GetApiV3MetricsIngressBandwidthRequest$Outbound; } export declare function getApiV3MetricsIngressBandwidthRequestToJSON(getApiV3MetricsIngressBandwidthRequest: GetApiV3MetricsIngressBandwidthRequest): string; export declare function getApiV3MetricsIngressBandwidthRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3metricsingressbandwidth.d.ts.map