ScheduleDay

public struct ScheduleDay : Equatable, Codable

Represents a single day of available time slots.

  • The date the timeslots 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 of timeslots

    Declaration

    Swift

    public let date: Date
  • An array of timeslots that are available

    Declaration

    Swift

    public let timeSlots: [TimeSlot]
  • Undocumented

    Declaration

    Swift

    public init(
        date: Date, 
        timeSlots: [TimeSlot]
    )
  • Declaration

    Swift

    public init(from decoder: Decoder) throws