chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.audits / GetEncodedResponseResponse

GetEncodedResponseResponse

data class GetEncodedResponseResponse

Response type for the AuditsDomain.getEncodedResponse command.

Constructors

<init>

Response type for the AuditsDomain.getEncodedResponse command.

GetEncodedResponseResponse(body: String? = null, originalSize: Int, encodedSize: Int)

Properties

body

The encoded body as a base64 string. Omitted if sizeOnly is true. (Encoded as a base64 string when passed over JSON)

val body: String?

encodedSize

Size after re-encoding.

val encodedSize: Int

originalSize

Size before re-encoding.

val originalSize: Int