ClerkPaginatedResponse

@Serializable
data class ClerkPaginatedResponse<T>(val data: List<T>, val totalCount: Int, val hasRoleSetMigration: Boolean? = null)

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, hasRoleSetMigration: Boolean? = null)

Properties

Link copied to clipboard
val data: List<T>

A list that contains fetched data

Link copied to clipboard

Whether organization role updates are temporarily disabled while roles migrate.

Link copied to clipboard

The total count of resources