Meter State
data class MeterState(val id: String, val status: MeterStatus, val channels: List<ChannelState>, val latestEvent: MeterReading? = null, val statusMessage: String? = null, val present: Boolean)
The live state of a single meter
Constructors
Link copied to clipboard
constructor(id: String, status: MeterStatus, channels: List<ChannelState>, latestEvent: MeterReading? = null, statusMessage: String? = null, present: Boolean)