Opening Hours
data class OpeningHours(days: List<Day>, hours: List<OpeningHour>, rule: OpeningRule?)
Content copied to clipboard
An opening hour rule consists of a list of days where the rule applies, a range of hours on the days and a rule stating if the gas station i open or closed during the specified time interval(s).
Constructors
OpeningHours
Link copied to clipboard
fun OpeningHours(days: List<Day>, hours: List<OpeningHour>, rule: OpeningRule?)
Content copied to clipboard