BloodPressure

data class BloodPressure(val unit: KHUnit.Pressure, val systolicValue: Double, val diastolicValue: Double, val time: Instant) : KHRecord

Captures the blood pressure of a user. Each record represents a single instantaneous blood pressure reading.

Parameters

unit

Measurement scale of this record

systolicValue

Represents the top number of a BP reading and refers to the amount of pressure experienced by the arteries while the heart is beating

diastolicValue

Represents the bottom number of a BP reading and refers to the amount of pressure in the arteries while the heart is resting in between heartbeats

time

Time instant of the interval over which the value this record was captured

Constructors

Link copied to clipboard
constructor(unit: KHUnit.Pressure, systolicValue: Double, diastolicValue: Double, time: Instant)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val time: Instant
Link copied to clipboard