MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPBeacon.h
Go to the documentation of this file.
1//
2// MPBeacon.h
3// MapsIndoors
4//
5// Created by Daniel Nielsen on 26/02/15.
6// Copyright (c) 2015 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "MPPoint.h"
11#import "MPJSONModel.h"
12
13
14@protocol MPBeacon
15@end
16
17
18@interface MPBeacon : MPJSONModel
19
20@property (nonatomic, strong, nullable) NSString* beaconId;
21@property (nonatomic, strong, nullable) NSNumber* maxTxPower;
22@property (nonatomic, strong, nullable) NSNumber* maxTxDistance;
23@property (nonatomic, strong, nullable) NSNumber* floor;
24@property (nonatomic, strong, nullable) NSString* building;
25@property (nonatomic, strong, nullable) NSString* venue;
26@property (nonatomic, strong, nullable) NSMutableArray<Optional> *RSSI;
27@property (nonatomic, strong, nullable) NSDate<Optional> *latestTimeStamp;
28
29@property (nonatomic, strong, nullable) MPPoint* geometry;
30
31@end
32
Definition MPBeacon.h:19
NSNumber * floor
Definition MPBeacon.h:23
NSString * beaconId
Definition MPBeacon.h:20
NSNumber * maxTxPower
Definition MPBeacon.h:21
NSString * building
Definition MPBeacon.h:24
NSString * venue
Definition MPBeacon.h:25
NSDate< Optional > * latestTimeStamp
Definition MPBeacon.h:27
MPPoint * geometry
Definition MPBeacon.h:29
NSMutableArray< Optional > * RSSI
Definition MPBeacon.h:26
NSNumber * maxTxDistance
Definition MPBeacon.h:22
Definition MPPoint.h:23