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