data class Page<T>(val rows: List<T>, val total: Long, val page: Int, val pageSize: Int)
Result of a PagedQuery.execute call. Contains the rows for the requested page, the total matching row count, and pagination metadata — everything a typical REST response needs without a second round-trip.