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