WaitTimeAvailability
public struct WaitTimeAvailability : Decodable, Equatable
Undocumented
-
Date at UTC of when the estimated time was generated. Estimates are cached and updated at various intervals.
Declaration
Swift
public let generatedAt: Date
-
Estimated wait time in seconds of the practice region, or when in the virtual visit waiting room.
Declaration
Swift
public let estimatedWaitTimeSeconds: Int?
-
Message that is shown in the waiting room.
Declaration
Swift
public let estimatedWaitTimeMessage: String?
-
Whether or not a region is available
Declaration
Swift
public let available: Bool
-
An enum to describe the reason a Region is unavailable
Declaration
Swift
public let reason: Reason?
-
A region code for wait time and availability. Typically a two-character string code
Declaration
Swift
public let regionCode: String
-
A guid representing a Practice
Declaration
Swift
public let practiceId: String
-
Visit types for waitTime and Availability
Declaration
Swift
public let visitTypeName: VirtualVisitTypeName
-
Additional assignment qualifiers limiting this provider pool
Declaration
Swift
public let assignmentQualifiers: [VirtualVisitAssignmentQualifier]
-
The home market for a patient
Declaration
Swift
public let homeMarket: String?
-
Describes the reasons for a Region not being available
See moreDeclaration
Swift
public enum Reason : String, Codable
-
An internal decoder to handle dates.
Declaration
Swift
public init(from decoder: Decoder) throws