AI-generated Key Takeaways
-
GMSPlaceSpecialDayprovides information about a specific date that might have different opening hours than usual. -
It includes a
dateproperty indicating the specific date with potential exceptional hours and anisExceptionalproperty confirming if the date has unusual hours, often for holidays.
GMSPlaceSpecialDay
@interface GMSPlaceSpecialDay : NSObjectRepresents information on a particular day which may have opening hours different than normal.
-
Date for which there may be exceptional hours.
Declaration
Swift
var date: Date { get }Objective-C
@property (nonatomic, copy, readonly) NSDate *_Nonnull date; -
Returns whether or not the day has exceptional hours which can
- replace the regular hours on certain dates (often holidays).
Declaration
Swift
var isExceptional: Bool { get }Objective-C
@property (nonatomic, readonly) BOOL isExceptional;