data class MeasurementValue : JsonSerializable
Individual measurement consisting of a human readable label, its unit of measure and the value
data class ValueHolder : JsonSerializable |
MeasurementValue(o: JSONObject) MeasurementValue(label: String, unit: String, value: Number) MeasurementValue(label: String, value: MeasurementValue.ValueHolder)
Individual measurement consisting of a human readable label, its unit of measure and the value |
val label: String |
|
val value: MeasurementValue.ValueHolder |
fun toJSONString(): String |
fun captureValue(o: JSONObject): MeasurementValue.ValueHolder |
|
fun label(o: JSONObject): String |