commonMain.dk.cachet.carp.common.application.data.InterbeatInterval.kt Maven / Gradle / Ivy
Go to download
Helper classes and base types relied upon by all subsystems. This library does not contain any domain logic.
The newest version!
package dk.cachet.carp.common.application.data
import kotlinx.serialization.*
import kotlin.js.JsExport
/**
* The associated time interval denotes the interval between two consecutive heartbeats.
* E.g., a measured RR interval.
*/
@Serializable
@SerialName( CarpDataTypes.INTERBEAT_INTERVAL_TYPE_NAME )
@JsExport
data class InterbeatInterval( override val sensorSpecificData: Data? = null ) : SensorData