import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { ActivitySort } from "./activitysort.js"; import { Blockchain } from "./blockchain.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { UserActivityType } from "./useractivitytype.js"; export type ActivitiesByUsersRequest = { /** * Activity type */ types: Array; /** * List of the user id */ users: Array; /** * Currency for BID and CANCEL_BID activity types */ bidCurrencies?: Array | undefined; blockchains?: 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?: ActivitySort | undefined; }; /** @internal */ export declare const ActivitiesByUsersRequest$inboundSchema: z.ZodType; /** @internal */ export type ActivitiesByUsersRequest$Outbound = { types: Array; users: Array; bidCurrencies?: Array | undefined; blockchains?: Array | undefined; from?: string | undefined; to?: string | undefined; continuation?: string | undefined; cursor?: string | undefined; size?: number | undefined; sort?: string | undefined; }; /** @internal */ export declare const ActivitiesByUsersRequest$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 ActivitiesByUsersRequest$ { /** @deprecated use `ActivitiesByUsersRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ActivitiesByUsersRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ActivitiesByUsersRequest$Outbound` instead. */ type Outbound = ActivitiesByUsersRequest$Outbound; } export declare function activitiesByUsersRequestToJSON(activitiesByUsersRequest: ActivitiesByUsersRequest): string; export declare function activitiesByUsersRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=activitiesbyusersrequest.d.ts.map