MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPLiveDomainType.h
Go to the documentation of this file.
1//
2// MPLiveDomainType.h
3// MapsIndoors
4//
5// Created by Daniel Nielsen on 05/08/2020.
6// Copyright © 2020 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
12#define kMPLiveDomainTypeOccupancy @"occupancy"
14#define kMPLiveDomainTypePosition @"position"
16#define kMPLiveDomainTypeAvailability @"availability"
18#define kMPLiveDomainTypeCount @"count"
20#define kMPLiveDomainTypeTemperature @"temperature"
22#define kMPLiveDomainTypeCO2 @"co2"
24#define kMPLiveDomainTypeHumidity @"humidity"
25
26NS_ASSUME_NONNULL_BEGIN
27
29@interface MPLiveDomainType : NSObject
31@property (class, readonly, nonatomic, strong) NSString* occupancy;
33@property (class, readonly, nonatomic, strong) NSString* position;
35@property (class, readonly, nonatomic, strong) NSString* availability;
37@property (class, readonly, nonatomic, strong) NSString* count;
39@property (class, readonly, nonatomic, strong) NSString* temperature;
41@property (class, readonly, nonatomic, strong) NSString* co2;
43@property (class, readonly, nonatomic, strong) NSString* humidity;
44
45@end
46
47NS_ASSUME_NONNULL_END
Convenience class for static Live Domain Types.
Definition MPLiveDomainType.h:30
NSString * occupancy
Get the Occupancy Domain Type.
Definition MPLiveDomainType.h:31
NSString * position
Get the Position Domain Type.
Definition MPLiveDomainType.h:33
NSString * temperature
Get the Temperature Domain Type.
Definition MPLiveDomainType.h:39
NSString * co2
Get the CO2 Domain Type.
Definition MPLiveDomainType.h:41
NSString * humidity
Get the Humidity Domain Type.
Definition MPLiveDomainType.h:43
NSString * count
Get the Count Domain Type.
Definition MPLiveDomainType.h:37
NSString * availability
Get the Availability Domain Type.
Definition MPLiveDomainType.h:35