import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type GetItemsByCollectionRequest = { /** * Address of the collection */ collection: string; /** * Continuation token from the previous response */ continuation?: string | undefined; /** * The number of items to return */ size?: number | undefined; /** * Search engine to use for search * * @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. */ searchEngine?: models.SearchEngine | undefined; }; /** @internal */ export declare const GetItemsByCollectionRequest$inboundSchema: z.ZodType; /** @internal */ export type GetItemsByCollectionRequest$Outbound = { collection: string; continuation?: string | undefined; size?: number | undefined; searchEngine?: string | undefined; }; /** @internal */ export declare const GetItemsByCollectionRequest$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 GetItemsByCollectionRequest$ { /** @deprecated use `GetItemsByCollectionRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetItemsByCollectionRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetItemsByCollectionRequest$Outbound` instead. */ type Outbound = GetItemsByCollectionRequest$Outbound; } export declare function getItemsByCollectionRequestToJSON(getItemsByCollectionRequest: GetItemsByCollectionRequest): string; export declare function getItemsByCollectionRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getitemsbycollection.d.ts.map