data class MeasurementSeries
Represents a series of measurements captured over a period of time that can be queried, created and deleted
Formal definition is given in Cumulocity REST API Guide
data class Value |
MeasurementSeries(o: JSONObject) MeasurementSeries(name: String, type: String, unit: String, values: List<MeasurementSeries.Value>)
Represents a series of measurements captured over a period of time that can be queried, created and deleted |
val name: String |
|
val type: String |
|
val unit: String |
|
val values: List<MeasurementSeries.Value> |
fun _captureSeries(o: JSONObject, label: String): String |
|
fun _captureValues(o: JSONObject): List<MeasurementSeries.Value> |