class ExperimentPayload (source)
Class which represents an experiment associated data
ExperimentPayload()
Class which represents an experiment associated data  | 
fun get(key: String): Any?
Gets a value from the payload  | 
|
fun getBooleanList(key: String): List<Boolean>?
Gets a value from the payload as a list of Boolean  | 
|
fun getDoubleList(key: String): List<Double>?
Gets a value from the payload as a list of Double  | 
|
fun getIntList(key: String): List<Int>?
Gets a value from the payload as a list of Int  | 
|
fun getKeys(): Set<String>
Gets all the payload keys  | 
|
fun getLongList(key: String): List<Long>?
Gets a value from the payload as a list of Long  | 
|
fun getStringList(key: String): List<String>?
Gets a value from the payload as a list of String  | 
|
fun put(key: String, value: Any): Unit
Puts a value into the payload  |