GetEncodedResponseResponse

@Serializable
data class GetEncodedResponseResponse(val body: String? = null, val originalSize: Int, val encodedSize: Int)

Response type for the AuditsDomain.getEncodedResponse command.

Constructors

Link copied to clipboard
constructor(body: String? = null, originalSize: Int, encodedSize: Int)

Properties

Link copied to clipboard
val body: String? = null

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

Link copied to clipboard

Size after re-encoding.

Link copied to clipboard

Size before re-encoding.