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 GetAllActivitiesRequest = { /** * Names of the blockchain networks. If no one specified, data from all blockchains will be returned */ blockchains?: Array | undefined; /** * Activity type */ type: Array; /** * Currency for BID and CANCEL_BID activity types */ bidCurrencies?: Array | undefined; /** * Continuation token from the previous response */ continuation?: string | undefined; /** * Combined continuation token from the previous response */ cursor?: string | undefined; /** * The number of items to return */ size?: number | undefined; /** * Sorting by data update time */ sort?: models.ActivitySort | undefined; }; /** @internal */ export declare const GetAllActivitiesRequest$inboundSchema: z.ZodType; /** @internal */ export type GetAllActivitiesRequest$Outbound = { blockchains?: Array | undefined; type: Array; bidCurrencies?: Array | undefined; continuation?: string | undefined; cursor?: string | undefined; size?: number | undefined; sort?: string | undefined; }; /** @internal */ export declare const GetAllActivitiesRequest$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 GetAllActivitiesRequest$ { /** @deprecated use `GetAllActivitiesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetAllActivitiesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetAllActivitiesRequest$Outbound` instead. */ type Outbound = GetAllActivitiesRequest$Outbound; } export declare function getAllActivitiesRequestToJSON(getAllActivitiesRequest: GetAllActivitiesRequest): string; export declare function getAllActivitiesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getallactivities.d.ts.map