MPIOpeningHours

data class MPIOpeningHours(type: String, opens: String, closes: String, dayOfWeek: List<String>)

MPIOpeningHours has the opening hours of the MPINavigatable.MPILocations.

Constructors

MPIOpeningHours
Link copied to clipboard
fun MPIOpeningHours(type: String, opens: String, closes: String, dayOfWeek: List<String>)

Functions

component1
Link copied to clipboard
operator fun component1(): String
component2
Link copied to clipboard
operator fun component2(): String
component3
Link copied to clipboard
operator fun component3(): String
component4
Link copied to clipboard
operator fun component4(): List<String>
copy
Link copied to clipboard
fun copy(type: String, opens: String, closes: String, dayOfWeek: List<String>): MPIOpeningHours
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

closes
Link copied to clipboard
val closes: String
The closing time of the the MPINavigatable.MPILocation
  • Example: "20:00"

dayOfWeek
Link copied to clipboard
val dayOfWeek: List<String>
Days of the week MPINavigatable.MPILocation opens
  • Example: "Sunday", "Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"

opens
Link copied to clipboard
val opens: String
The opening time of the the MPINavigatable.MPILocation
  • Example: "09:00"

type
Link copied to clipboard
val type: String
The type of MPIOpeningHours
  • Example: "OpeningHoursSpecification"