IncidentStatus

public enum IncidentStatus : String, Codable

The various stages of progress towards resolution that a DexcareIncident could be at.

  • The incident is being looked at by DexCare engineers.

    Declaration

    Swift

    case investigating
  • The issue has been identified and a fix is being implemented.

    Declaration

    Swift

    case identified
  • The fix has been implemented and the situation is being watched to ensure resolution.

    Declaration

    Swift

    case monitoring
  • The issue has been fully resolved and is no longer being monitored.

    Declaration

    Swift

    case resolved
  • A maintenance is planned but has not yet started.

    Declaration

    Swift

    case scheduled
  • A maintenance window has started.

    Declaration

    Swift

    case inProgress = "in_progress"
  • A potential fix has been found and is currently being validated.

    Declaration

    Swift

    case verifying
  • The maintenance window has concluded.

    Declaration

    Swift

    case completed
  • Only returned if the enum value could not be parsed to one of the above.

    Declaration

    Swift

    case unknown = ""