Schedule Day
data class ScheduleDay(zonedDateTime: ZonedDateTime, timeSlots: List<TimeSlot>) : Parcelable
Content copied to clipboard
Represents a single day of available time slots.
Parameters
zonedDateTime
The date the time slots represent. The API incorrectly sends this with a time, but it should only represent the day. Highly recommended to not use this property, and use localDate instead.
timeSlots
A list of TimeSlot objects that are available.
Constructors
ScheduleDay
Link copied to clipboard
fun ScheduleDay(zonedDateTime: ZonedDateTime, timeSlots: List<TimeSlot> = listOf())
Content copied to clipboard
The date the time slots represent.