VLDBiometrics

@interface VLDBiometrics : VLDRecord

Biometric Measurements are comprised of a user’s biometric health data such as blood pressure, cholesterol, heart rate, and blood and hormone levels.

  • The value of the measured quantity in mg/dL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *bloodCalcium
  • The value of the measured quantity in µg/L

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *bloodChromium
  • The value of the measured quantity in ng/mL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *bloodFolicAcid
  • The value of the measured quantity in mg/dL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *bloodMagnesium
  • The value of the measured quantity in mEq/L

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *bloodPotassium
  • The value of the measured quantity in mEq/L

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *bloodSodium
  • The value of the measured quantity in pg/mL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *bloodVitaminB12
  • The value of the measured quantity in µg/dL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *bloodZinc
  • The value of the measured quantity in U/L

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *creatineKinase
  • crp

    The value of the measured quantity in mg/L

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *crp
  • The value of the measured quantity in mmHg

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *diastolic
  • The value of the measured quantity in ng/mL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *ferritin
  • hdl

    The value of the measured quantity in mg/dL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *hdl
  • The value of the measured quantity in mg/L

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *hscrp
  • il6

    The value of the measured quantity in pg/mL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *il6
  • ldl

    The value of the measured quantity in mg/dL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *ldl
  • The value of the measured quantity in bpm

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *restingHeartrate
  • The value of the measured quantity in mmHg

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *systolic
  • The value of the measured quantity in ng/dL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *testosterone
  • The value of the measured quantity in mg/dL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *totalCholesterol
  • tsh

    The value of the measured quantity in mIU/L

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *tsh
  • The value of the measured quantity in mg/dL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *uricAcid
  • The value of the measured quantity in ng/mL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *vitaminD
  • The value of the measured quantity in cells/µL

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *whiteCellCount
  • The value of the measured quantity in %

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *spo2
  • The value of the measured quantity in Celsius

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *temperature
  • The temperature value of the record converted into the specified unit

    Declaration

    Objective-C

    - (id)temperatureWithUnit:(id)unit;

    Parameters

    unit

    the temperature unit to retrieve the temperature value in.

  • Set the temperature value of the record after converting from the specified unit to degrees Celsius

    Declaration

    Objective-C

    - (void)setTemperature:(id)temperature withUnit:(id)unit;

    Parameters

    temperature

    the temperature value to store in the record.

    unit

    the temperature unit that the accompanying temperature value is currently in.

  • Minimum heart rate over a time period

    Declaration

    Objective-C

    - (id)minHeartRate;
  • Maximum heart rate over a time period

    Declaration

    Objective-C

    - (id)maxHeartRate;
  • Average heart rate average over a time period

    Declaration

    Objective-C

    - (id)averageHeartRate;
  • Median heart rate over a time period

    Declaration

    Objective-C

    - (id)medianHeartRate;