Reason
public enum Reason : String, Codable
Describes the reasons for a Region not being available
-
No regions have been set up
Declaration
Swift
case noRegionsFound = "NO_REGIONS_FOUND"
-
The region is not currently open
Declaration
Swift
case offHours = "OFF_HOURS"
-
No On Call Providers are available to have virtual visits
Declaration
Swift
case noOnCallProviders = "NO_ONCALL_PROVIDERS"
-
The region is currently experiencing high demand
Declaration
Swift
case regionBusy = "REGION_BUSY"
-
Declaration
Swift
public init(from decoder: Decoder) throws