DexcareStatus
public struct DexcareStatus : Codable
A structure representing the status of the DexCare Services.
-
The name of the customer that is associated with the status
Declaration
Swift
public let name: String
-
The current indicator of the status
Declaration
Swift
public let impact: IncidentImpact
-
A short description of the current Dexcare status -
Minor Service Outage
,All Systems Operational
are some examples that would be returnedDeclaration
Swift
public let description: String
-
Last date time the status was updated
Declaration
Swift
public let updatedAt: Date
-
An array of
DexcareIncident
that are currently activeDeclaration
Swift
public let incidents: [DexcareIncident]
-
An array of
DexcareIncident
that are currently scheduledDeclaration
Swift
public let scheduledMaintenances: [DexcareIncident]
-
Declaration
Swift
public init(from decoder: Decoder) throws