ReadResponse

@Serializable
data class ReadResponse(val base64Encoded: Boolean? = null, val data: String, val eof: Boolean)

Response type for the IODomain.read command.

Constructors

Link copied to clipboard
constructor(base64Encoded: Boolean? = null, data: String, eof: Boolean)

Properties

Link copied to clipboard
val base64Encoded: Boolean? = null

Set if the data is base64-encoded

Link copied to clipboard

Data that were read.

Link copied to clipboard

Set if the end-of-file condition occurred while reading.