TagDataPointValue

public struct TagDataPointValue: Equatable

The value of a data point.

Each data point has three pieces of information. A timestamp, measurement and quality of the data point.

  • The time the data point was recoreded

    Declaration

    Swift

    public let timestamp: UInt64
  • The measured value of the data point

    Declaration

    Swift

    public let measure: Double
  • The quality of the data point

    Declaration

    Swift

    public let quality: DataPointQuality
  • Constructs a datapoint with a timestamp, mesurement and quality

    Declaration

    Swift

    public init(timestamp: UInt64, measure: Double, quality: DataPointQuality)