chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.cachestorage / RequestEntriesRequest

RequestEntriesRequest

data class RequestEntriesRequest

Request object containing input parameters for the CacheStorageDomain.requestEntries command.

Constructors

<init>

Request object containing input parameters for the CacheStorageDomain.requestEntries command.

RequestEntriesRequest(cacheId: CacheId, skipCount: Int? = null, pageSize: Int? = null, pathFilter: String? = null)

Properties

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?