MPWeeklyOpeningHours

Represents the opening hours for a week, with each day having its own set of opening hours. This class is used to define the opening hours for a business or location, detailing the hours for each day of the week. Each day is represented by an instance of MPDailyOpeningHours, which contains the specific opening and closing times for that day.

Constructors

Link copied to clipboard

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
@SerializedName(value = "friday")
var friday: MPDailyOpeningHours? = null

Opening hours for Friday.

Link copied to clipboard
@SerializedName(value = "monday")
var monday: MPDailyOpeningHours? = null

Opening hours for Monday.

Link copied to clipboard
@SerializedName(value = "saturday")
var saturday: MPDailyOpeningHours? = null

Opening hours for Saturday.

Link copied to clipboard
@SerializedName(value = "sunday")
var sunday: MPDailyOpeningHours? = null

Opening hours for Sunday.

Link copied to clipboard
@SerializedName(value = "thursday")
var thursday: MPDailyOpeningHours? = null

Opening hours for Thursday.

Link copied to clipboard
@SerializedName(value = "tuesday")
var tuesday: MPDailyOpeningHours? = null

Opening hours for Tuesday.

Link copied to clipboard
@SerializedName(value = "wednesday")
var wednesday: MPDailyOpeningHours? = null

Opening hours for Wednesday.