GetEncodedResponseReturn

@Serializable
data class GetEncodedResponseReturn(val body: String?, val originalSize: Int, val encodedSize: Int)

Constructors

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

Properties

Link copied to clipboard
val body: String?

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.