import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListPartitionsPartitionsGetRequest = { /** * An opaque cursor for pagination */ cursor?: string | null | undefined; /** * The number of items per page (must be greater than 0 and less than or equal to 100) */ pageSize?: number | undefined; }; export type ListPartitionsPartitionsGetResponse = { result: components.PartitionList; }; /** @internal */ export declare const ListPartitionsPartitionsGetRequest$inboundSchema: z.ZodType; /** @internal */ export type ListPartitionsPartitionsGetRequest$Outbound = { cursor?: string | null | undefined; page_size: number; }; /** @internal */ export declare const ListPartitionsPartitionsGetRequest$outboundSchema: z.ZodType; export declare function listPartitionsPartitionsGetRequestToJSON(listPartitionsPartitionsGetRequest: ListPartitionsPartitionsGetRequest): string; export declare function listPartitionsPartitionsGetRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListPartitionsPartitionsGetResponse$inboundSchema: z.ZodType; /** @internal */ export type ListPartitionsPartitionsGetResponse$Outbound = { Result: components.PartitionList$Outbound; }; /** @internal */ export declare const ListPartitionsPartitionsGetResponse$outboundSchema: z.ZodType; export declare function listPartitionsPartitionsGetResponseToJSON(listPartitionsPartitionsGetResponse: ListPartitionsPartitionsGetResponse): string; export declare function listPartitionsPartitionsGetResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listpartitionspartitionsget.d.ts.map