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 GetAllActivitiesSyncRequest = { /** * Type of the blockchain network */ blockchain: models.Blockchain; /** * Continuation token from the previous response */ continuation?: string | undefined; /** * The number of items to return */ size?: number | undefined; /** * Sorting by data base update time */ sort?: models.SyncSort | undefined; /** * Filtering by activity type */ type?: models.SyncType | undefined; }; /** @internal */ export declare const GetAllActivitiesSyncRequest$inboundSchema: z.ZodType; /** @internal */ export type GetAllActivitiesSyncRequest$Outbound = { blockchain: string; continuation?: string | undefined; size?: number | undefined; sort?: string | undefined; type?: string | undefined; }; /** @internal */ export declare const GetAllActivitiesSyncRequest$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 GetAllActivitiesSyncRequest$ { /** @deprecated use `GetAllActivitiesSyncRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetAllActivitiesSyncRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetAllActivitiesSyncRequest$Outbound` instead. */ type Outbound = GetAllActivitiesSyncRequest$Outbound; } export declare function getAllActivitiesSyncRequestToJSON(getAllActivitiesSyncRequest: GetAllActivitiesSyncRequest): string; export declare function getAllActivitiesSyncRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getallactivitiessync.d.ts.map