addParam

fun addParam(key: String, value: String)

Adds a String parameter to the ZK system specification.

Parameters

key

the key of the parameter.

value

the value of the parameter.


fun addParam(key: String, value: Long)

Adds a Long parameter to the ZK system specification.

Parameters

key

the key of the parameter.

value

the value of the parameter.


fun addParam(key: String, value: Double)

Adds a Double parameter to the ZK system specification.

Parameters

key

the key of the parameter.

value

the value of the parameter.


fun addParam(key: String, value: Boolean)

Adds a Boolean parameter to the ZK system specification.

Parameters

key

the key of the parameter.

value

the value of the parameter.


fun addParam(key: String, value: DataItem)

Adds parameter to the ZK system specification encoded in CBOR.

Parameters

key

the key of the parameter.

value

the value of the parameter.


fun addParam(key: String, value: JsonElement)

Adds parameter to the ZK system specification encoded in JSON.

Parameters

key

the key of the parameter.

value

the value of the parameter.