data class RequestEntriesRequest
Request object containing input parameters for the CacheStorageDomain.requestEntries command.
<init> |
Request object containing input parameters for the CacheStorageDomain.requestEntries command. RequestEntriesRequest(cacheId: CacheId, skipCount: Int? = null, pageSize: Int? = null, pathFilter: String? = null) |
cacheId |
ID of cache to get entries from. val cacheId: CacheId |
pageSize |
Number of records to fetch. val pageSize: Int? |
pathFilter |
If present, only return the entries containing this substring in the path val pathFilter: String? |
skipCount |
Number of records to skip. val skipCount: Int? |