ScheduleDay
public struct ScheduleDay : Equatable, Codable
Represents a single day of available time slots.
-
The date the time slots represent
Important
This will return with the timezone of the Clinic or Provider. You can effectively ignore time + timezone as it should be used for grouping oftimeSlots
Declaration
Swift
public let date: Date
-
An array of time slots that are available
Declaration
Swift
public let timeSlots: [TimeSlot]
-
Declaration
Swift
public init(from decoder: Decoder) throws