[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["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;"]]