RequestEntriesParameter

@Serializable
data class RequestEntriesParameter(val cacheId: String, val skipCount: Int? = null, val pageSize: Int? = null, val pathFilter: String? = null)

Constructors

Link copied to clipboard
constructor(cacheId: String, skipCount: Int? = null, pageSize: Int? = null, pathFilter: String? = null)

Properties

Link copied to clipboard

ID of cache to get entries from.

Link copied to clipboard
val pageSize: Int? = null

Number of records to fetch.

Link copied to clipboard
val pathFilter: String? = null

If present, only return the entries containing this substring in the path

Link copied to clipboard
val skipCount: Int? = null

Number of records to skip.