chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.storage / GetUsageAndQuotaResponse

GetUsageAndQuotaResponse

data class GetUsageAndQuotaResponse

Response type for the StorageDomain.getUsageAndQuota command.

Constructors

<init>

Response type for the StorageDomain.getUsageAndQuota command.

GetUsageAndQuotaResponse(usage: Double, quota: Double, overrideActive: Boolean, usageBreakdown: List<UsageForType>)

Properties

overrideActive

Whether or not the origin has an active storage quota override

val overrideActive: Boolean

quota

Storage quota (bytes).

val quota: Double

usage

Storage usage (bytes).

val usage: Double

usageBreakdown

Storage usage per type (bytes).

val usageBreakdown: List<UsageForType>