dk.sdu.cloud.PageV2

UCloud Developer Guide / Core / Core Types

PageV2

Represents a single 'page' of results

data class PageV2<T>(
    val itemsPerPage: Int,
    val items: List<T>,
    val next: String?,
)

Every page contains the items from the current result set, along with information which allows the client to fetch additional information.

Properties

Last updated