OpenDay

data class OpenDay(day: String, openHours: OpenHours) : Parcelable

Represents the operational hours of a clinic for a particular day of the week.

Constructors

OpenDay
Link copied to clipboard
fun OpenDay(day: String, openHours: OpenHours)

Functions

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

Properties

day
Link copied to clipboard
val day: String
The day of the week the openHours represents.
openHours
Link copied to clipboard
val openHours: OpenHours
An OpenHours instance containing the open and close time of the clinic.