MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPBookableQuery.h
Go to the documentation of this file.
1//
2// MPBookableQuery.h
3// MapsIndoors
4//
5// Created by Michael Bech Hansen on 07/07/2020.
6// Copyright © 2020 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11
12@class MPVenue;
13@class MPBuilding;
14@class MPFloor;
15@class MPLocation;
16
17
18NS_ASSUME_NONNULL_BEGIN
19
24@interface MPBookableQuery : NSObject
25
27@property (nonatomic, strong, nonnull ) NSDate* startTime;
28
30@property (nonatomic, strong, nonnull ) NSDate* endTime;
31
33@property (nonatomic, strong, nullable) MPVenue* venue;
34
36@property (nonatomic, strong, nullable) MPBuilding* building;
37
39@property (nonatomic, strong, nullable) NSNumber* floorIndex;
40
42@property (nonatomic, strong, nullable) MPLocation* location;
43
45@property (nonatomic, strong, nullable) NSString* category;
46
48@property (nonatomic, strong, nullable) NSString* locationType;
49
50@end
51
52NS_ASSUME_NONNULL_END
Definition MPBookableQuery.h:25
MPBuilding * building
Optional filter for which Building the found Locations should be contained in.
Definition MPBookableQuery.h:36
MPVenue * venue
Optional filter for which Venue the found Locations should be contained in.
Definition MPBookableQuery.h:33
NSDate * startTime
Required start date for your potential booking.
Definition MPBookableQuery.h:27
NSString * category
Optional filter for which Category the found Locations should belong to.
Definition MPBookableQuery.h:45
NSNumber * floorIndex
Optional filter for which Floor the found Locations should belong to.
Definition MPBookableQuery.h:39
NSString * locationType
Optional filter for what the found Locations should belong to.
Definition MPBookableQuery.h:48
NSDate * endTime
Required end date for your potential booking.
Definition MPBookableQuery.h:30
MPLocation * location
Optional filter for which Location the found Locations should either be or be contained in.
Definition MPBookableQuery.h:42
Definition MPBuilding.h:36
Definition MPFloor.h:17
Definition MPLocation.h:38
Definition MPVenue.h:31