WheelChairPushes

data class WheelChairPushes(val count: Long, val startTime: Instant, val endTime: Instant) : KHRecord

Captures the number of wheelchair pushes done since the last reading. Each push is only reported once so records shouldn't have overlapping time. The start time of each record should represent the start of the interval in which pushes were made.

Parameters

count

Number of times a wheel chair was pushed

startTime

The start instant of the interval over which the value this record was captured

endTime

The end instant of the interval over which the value this record was captured

Constructors

Link copied to clipboard
constructor(count: Long, startTime: Instant, endTime: Instant)

Properties

Link copied to clipboard
val count: Long
Link copied to clipboard
val endTime: Instant
Link copied to clipboard
val startTime: Instant