ClerkPaginatedResponse

@Serializable
data class ClerkPaginatedResponse<T>(val data: List<T>, val totalCount: Int)

An interface that describes the response of a method that returns a paginated list of resources.

Constructors

Link copied to clipboard
constructor(data: List<T>, totalCount: Int)

Properties

Link copied to clipboard
val data: List<T>

A list that contains fetched data

Link copied to clipboard

The total count of resources