ActiveCaloriesRecord

@Serializable
@SerialName(value = "active_calories")
data class ActiveCaloriesRecord(val startTime: Instant, val endTime: Instant, val energy: Double) : IntervalRecord

Captures the user's active calories burned.

Constructors

Link copied to clipboard
constructor(startTime: Instant, endTime: Instant, energy: Double)

Properties

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

End time of the record.

Link copied to clipboard
Link copied to clipboard
open override val startTime: Instant

Start time of the record.

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