// Copyright © 2022-2026 Partium, Inc. DBA Partium /** * Base request data for getting paginated data. */ export interface BasePaginatedRequest { /** * The cursor to get the next page of data. */ cursor?: string; /** * The page size of the data. */ pageSize?: number; }