import type { UserProfileResponse } from './UserProfileResponse'; export type PaginatedListOfUserProfileResponse = { /** * Total number of records without paging applied */ totalRecords: number; /** * Current page index if paging applied, null otherwise */ pageIndex?: number | null; /** * Page size if paging applied, null otherwise */ pageSize?: number | null; /** * Total number of pages if paging applied, null otherwise */ totalPages?: number | null; /** * Indicates if there is a previous page */ hasPreviousPage: boolean; /** * Indicates if there is a next page */ hasNextPage: boolean; /** * Contains subset of data according to paging specification */ data: Array; };