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 GetAllItemsRequest = { /** * Names of the blockchain networks. If no one specified, NFTs from all blockchains will be returned */ blockchains?: Array | undefined; /** * Continuation token from the previous response */ continuation?: string | undefined; /** * The number of items to return */ size?: number | undefined; /** * Include deleted items */ showDeleted?: boolean | undefined; /** * Filter condition to return only items that have been updated after this date (timestamp) */ lastUpdatedFrom?: number | undefined; /** * Filter condition to return only items that have been updated before this date (timestamp) */ lastUpdatedTo?: 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 GetAllItemsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetAllItemsRequest$Outbound = { blockchains?: Array | undefined; continuation?: string | undefined; size?: number | undefined; showDeleted?: boolean | undefined; lastUpdatedFrom?: number | undefined; lastUpdatedTo?: number | undefined; searchEngine?: string | undefined; }; /** @internal */ export declare const GetAllItemsRequest$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 GetAllItemsRequest$ { /** @deprecated use `GetAllItemsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetAllItemsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetAllItemsRequest$Outbound` instead. */ type Outbound = GetAllItemsRequest$Outbound; } export declare function getAllItemsRequestToJSON(getAllItemsRequest: GetAllItemsRequest): string; export declare function getAllItemsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getallitems.d.ts.map