DaySchedule

data class DaySchedule(val id: String, val date: String, val dayStart: String? = null, val dayEnd: String? = null, val bookability: Bookability? = null, val scheduleElements: List<ScheduleElement>? = null) : Parcelable

Constructors

Link copied to clipboard
constructor(id: String, date: String, dayStart: String? = null, dayEnd: String? = null, bookability: Bookability? = null, scheduleElements: List<ScheduleElement>? = null)

Properties

Link copied to clipboard

refer to status of resource for the selected date/time

Link copied to clipboard

example: 2023-01-21

Link copied to clipboard
val dayEnd: String? = null

example: 18:00

Link copied to clipboard
val dayStart: String? = null

example: 08:00

Link copied to clipboard
val id: String

unique id

Link copied to clipboard

the list of elements ScheduleElement

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)