OpeningHoursMode
public enum OpeningHoursMode
extension OpeningHoursMode: Equatable
List of opening hours for a Point Of Interest.
-
Defines opening hours as time intervals for the next 7 days starting from the given date.
Note
from
Date is ignored by the backend if passed as part of the request. Correct value is set only when it’s part of the response data.Declaration
Swift
case nextSevenDays(from: Date)
-
Returns a Boolean value indicating whether two values are equal.
Declaration
Swift
public static func == (lhs: `Self`, rhs: `Self`) -> Bool