GMSPlaceSpecialDay
@interface GMSPlaceSpecialDay : NSObject
Represents 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;