BloodPressureRecord

@Serializable
@SerialName(value = "blood_pressure")
data class BloodPressureRecord(val time: Instant, val systolic: Double, val diastolic: Double) : InstantaneousRecord

Captures the user's blood pressure.

Constructors

Link copied to clipboard
constructor(time: Instant, systolic: Double, diastolic: Double)

Properties

Link copied to clipboard
open override val dataType: HealthDataType
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val time: Instant

Time the record happened.

Link copied to clipboard
open override val typeIdentifier: Int = 7