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 GetActivitiesByUserRequest = { /** * Activity type */ type: Array; blockchains?: Array | undefined; /** * Addresses of the users */ user: Array; /** * Currency for BID and CANCEL_BID activity types */ bidCurrencies?: Array | undefined; /** * Lower time border of data */ from?: Date | undefined; /** * Upper time border of data */ to?: Date | 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 GetActivitiesByUserRequest$inboundSchema: z.ZodType; /** @internal */ export type GetActivitiesByUserRequest$Outbound = { type: Array; blockchains?: Array | undefined; user: Array; bidCurrencies?: Array | undefined; from?: string | undefined; to?: string | undefined; continuation?: string | undefined; cursor?: string | undefined; size?: number | undefined; sort?: string | undefined; }; /** @internal */ export declare const GetActivitiesByUserRequest$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 GetActivitiesByUserRequest$ { /** @deprecated use `GetActivitiesByUserRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetActivitiesByUserRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetActivitiesByUserRequest$Outbound` instead. */ type Outbound = GetActivitiesByUserRequest$Outbound; } export declare function getActivitiesByUserRequestToJSON(getActivitiesByUserRequest: GetActivitiesByUserRequest): string; export declare function getActivitiesByUserRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getactivitiesbyuser.d.ts.map