GooglePlaces Framework Reference
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 2024-11-08 UTC.
[null,null,["Last updated 2024-11-08 UTC."],[[["`GMSPlaceSpecialDay` provides information about a specific date that might have different opening hours than usual."],["It includes a `date` property indicating the specific date with potential exceptional hours and an `isExceptional` property confirming if the date has unusual hours, often for holidays."]]],["`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"]]