Meter

@JsonClass(generateAdapter = true)
data class Meter(meterName: String, views: Int, viewsLeft: Int, maxViews: Int, totalViews: Int, incremented: Boolean, state: Meter.MeterState) : EventType

Types

MeterState
Link copied to clipboard
enum MeterState : Enum<Meter.MeterState>

Properties

incremented
Link copied to clipboard
val incremented: Boolean
maxViews
Link copied to clipboard
val maxViews: Int
meterName
Link copied to clipboard
val meterName: String
state
Link copied to clipboard
val state: Meter.MeterState
totalViews
Link copied to clipboard
val totalViews: Int
views
Link copied to clipboard
val views: Int
viewsLeft
Link copied to clipboard
val viewsLeft: Int