GooglePlaces Framework Reference
Stay organized with collections
Save and categorize content based on your preferences.
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;
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-27 UTC.
[null,null,["Last updated 2025-08-27 UTC."],[[["\u003cp\u003e\u003ccode\u003eGMSPlaceSpecialDay\u003c/code\u003e provides information about a specific date that might have different opening hours than usual.\u003c/p\u003e\n"],["\u003cp\u003eIt includes a \u003ccode\u003edate\u003c/code\u003e property indicating the specific date with potential exceptional hours and an \u003ccode\u003eisExceptional\u003c/code\u003e property confirming if the date has unusual hours, often for holidays.\u003c/p\u003e\n"]]],["`GMSPlaceSpecialDay` provides details about a specific date that might have different opening hours than usual. It contains two key pieces of information: the `date` itself, representing the day in question, and `isExceptional`, a boolean flag indicating whether the day has special hours that replace the regular schedule, often during holidays. These details can be accessed via Swift or Objective-C using provided property accessors.\n"],null,["# GooglePlaces Framework Reference\n\nGMSPlaceSpecialDay\n==================\n\n @interface GMSPlaceSpecialDay : NSObject\n\nRepresents information on a particular day which may have opening hours different than normal.\n- `\n ``\n ``\n `\n\n ### [date](#/c:objc(cs)GMSPlaceSpecialDay(py)date)\n\n `\n ` \n Date for which there may be exceptional hours. \n\n #### Declaration\n\n Swift \n\n var date: Date { get }\n\n Objective-C \n\n @property (nonatomic, copy, readonly) NSDate *_Nonnull date;\n\n- `\n ``\n ``\n `\n\n ### [isExceptional](#/c:objc(cs)GMSPlaceSpecialDay(py)isExceptional)\n\n `\n ` \n Returns whether or not the day has exceptional hours which can\n - replace the regular hours on certain dates (often holidays). \n\n #### Declaration\n\n Swift \n\n var isExceptional: Bool { get }\n\n Objective-C \n\n @property (nonatomic, readonly) BOOL isExceptional;"]]