GMSPlaceIsOpenRequest
@interface GMSPlaceIsOpenRequest : NSObjectRepresents an is open request definition to be sent via GMSPlacesClient.
- 
                  
                  Initializes the request with a GMSPlaceand date.DeclarationSwift init(place: GMSPlace, date: Date?)Objective-C - (nonnull instancetype)initWithPlace:(nonnull GMSPlace *)place date:(nullable NSDate *)date;ParametersplaceThe GMSPlaceto be used for the request.dateThe date to be used for the request. If no date is provided, the current date and time is used. 
- 
                  
                  Initializes the request with a placeID and date. DeclarationSwift convenience init(placeID: String, date: Date?)Objective-C - (nonnull instancetype)initWithPlaceID:(nonnull NSString *)placeID date:(nullable NSDate *)date;ParametersplaceIDThe placeID to be used for the request. dateThe date to be used for the request. If no date is provided, the current date and time is used. 
- 
                  
                  Unavailable Default init is not available. Please use the designated initializer. DeclarationObjective-C - (nonnull instancetype)init;
- 
                  
                  The placeID to be used for the request. DeclarationSwift var placeID: String? { get }Objective-C @property (nonatomic, copy, readonly, nullable) NSString *placeID;
- 
                  
                  The date to be used for the request. If no date is provided, the current date and time is used. DeclarationSwift var date: Date? { get }Objective-C @property (nonatomic, readonly, nullable) NSDate *date;