VLDDiabetesEvent

Objective-C

enum VLDDiabetesEvent {}

Swift

enum VLDDiabetesEvent : UInt

Represents the condition the user was in when taking a reading.

  • No event data provided.

    Declaration

    Objective-C

    VLDDiabetesEventNoEvent = 0

    Swift

    case noEvent = 0
  • Reading was taken while or immediately following exercise.

    Declaration

    Objective-C

    VLDDiabetesEventExercise = 3

    Swift

    case exercise = 3
  • Reading was taken while sick.

    Declaration

    Objective-C

    VLDDiabetesEventSick = 4

    Swift

    case sick = 4
  • Reading was taken after taking medication.

    Declaration

    Objective-C

    VLDDiabetesEventMedication = 5

    Swift

    case medication = 5
  • Other condition.

    Declaration

    Objective-C

    VLDDiabetesEventOther = 6

    Swift

    case other = 6