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
constructor()

Functions

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

Properties

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

Opening hours for Friday.

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

Opening hours for Monday.

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

Opening hours for Saturday.

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

Opening hours for Sunday.

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

Opening hours for Thursday.

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

Opening hours for Tuesday.

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

Opening hours for Wednesday.