MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPBookingsQuery.h
Go to the documentation of this file.
1//
2// MPBookingsQuery.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 MPLocation;
13
14
15NS_ASSUME_NONNULL_BEGIN
16
21@interface MPBookingsQuery : NSObject
22
23@property (nonatomic, strong, nullable) MPLocation* location;
24@property (nonatomic, strong, nullable) NSString* organizerId;
25@property (nonatomic, strong, nullable) NSDate* startTime;
26@property (nonatomic, strong, nullable) NSDate* endTime;
27
28@end
29
30NS_ASSUME_NONNULL_END
Definition MPBookingsQuery.h:22
NSDate * startTime
Definition MPBookingsQuery.h:25
NSString * organizerId
Definition MPBookingsQuery.h:24
NSDate * endTime
Definition MPBookingsQuery.h:26
MPLocation * location
Definition MPBookingsQuery.h:23
Definition MPLocation.h:38