MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPBooking.h
Go to the documentation of this file.
1//
2// MPBooking.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 MPBooking : NSObject
22
23@property (nonatomic, strong, readonly, nullable) NSString* bookingId;
24@property (nonatomic, strong, readonly, nullable) NSString* locationId;
25@property (nonatomic, weak, nullable) MPLocation* location;
26@property (nonatomic, strong, nullable) NSDate* startTime;
27@property (nonatomic, strong, nullable) NSDate* endTime;
28@property (nonatomic, strong, nullable) NSArray< NSString* >* participantIds;
29@property (nonatomic, strong, nullable) NSString* title;
30@property (nonatomic, strong, nullable) NSString* bookingDescription;
31@property (nonatomic, readonly ) BOOL isManaged;
32
33@end
34
35NS_ASSUME_NONNULL_END
Definition MPBooking.h:22
MPLocation * location
Definition MPBooking.h:25
NSArray< NSString * > * participantIds
Definition MPBooking.h:28
NSString * title
Definition MPBooking.h:29
BOOL isManaged
Definition MPBooking.h:31
NSString * bookingId
Definition MPBooking.h:23
NSString * locationId
Definition MPBooking.h:24
NSString * bookingDescription
Definition MPBooking.h:30
NSDate * endTime
Definition MPBooking.h:27
NSDate * startTime
Definition MPBooking.h:26
Definition MPLocation.h:38