Skip to content

Commit 7beba86

Browse files
committed
iOS FleetManagementSDK 4.32.2
1 parent 867d4d8 commit 7beba86

15 files changed

+120
-14
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
//
2+
// ESTBeaconBatteryLifetimesVO.h
3+
// EstimoteFleetManagementSDK
4+
//
5+
// Created by Łukasz Pikor on 25.06.2014.
6+
// Copyright (c) 2014 Estimote. All rights reserved.
7+
//
8+
9+
#import <Foundation/Foundation.h>
10+
#import "ESTBeaconDefinitions.h"
11+
12+
NS_ASSUME_NONNULL_BEGIN
13+
14+
@interface ESTBeaconBatteryLifetimesVO : NSObject
15+
16+
- (instancetype)initWithLifetimes:(NSDictionary *)lifetimes;
17+
18+
- (NSString *)lifetimeForAdvertisingInterval:(int)interval;
19+
- (NSString *)lifetimeForBroadcastingPower:(int)power;
20+
- (NSString *)lifetimeForBasicPowerMode:(ESTBeaconPowerSavingMode)basic
21+
andSmart:(ESTBeaconPowerSavingMode)smart;
22+
- (NSString *)lifetimeForBroadcastingScheme:(ESTBroadcastingScheme)scheme;
23+
24+
- (BOOL)shouldDisplayAlertForAdvertisingInterval:(int)interval;
25+
- (BOOL)shouldDisplayAlertForBroadcastingPower:(int)power;
26+
- (BOOL)shouldDisplayAlertForBasicPowerMode:(ESTBeaconPowerSavingMode)basic
27+
andSmart:(ESTBeaconPowerSavingMode)smart;
28+
29+
@end
30+
31+
NS_ASSUME_NONNULL_END

EstimoteFleetManagementSDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTDeviceSettingsCollection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ NS_ASSUME_NONNULL_BEGIN
4747
*
4848
* @param targetedClass Class of setting that should be get.
4949
*
50-
* @return Setting for class. Nil means no setting was set for this class or there are multiple settings avaialable.
50+
* @return Setting for class. Nil means no setting was set for this class or there are multiple settings available.
5151
*/
5252
- (nullable id)getSettingForClass:(Class)targetedClass;
5353

EstimoteFleetManagementSDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTDeviceTypeUtilitySettings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// ESTSettingsDeviceUtility.h
3-
// EstimoteSDK
3+
// EstimoteFleetManagementSDK
44
//
55
// Copyright (c) 2015 Estimote. All rights reserved.
66
//

EstimoteFleetManagementSDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTEddystoneFilterURLDomain.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// ESTEddystoneFilterURLDomain.h
3-
// EstimoteSDK
3+
// EstimoteFleetManagementSDK
44
//
55
// Created by Marcin Klimek on 11/05/15.
66
// Copyright (c) 2015 Estimote. All rights reserved.

EstimoteFleetManagementSDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTFirmwareInfoV4VO.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// EstimoteSDK
2+
// EstimoteFleetManagementSDK
33
//
44
// Copyright (c) 2015 Estimote. All rights reserved.
55
//
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Estimote Fleet Management SDK
2+
// Copyright © 2015 Estimote. All rights reserved.
3+
4+
#import <Foundation/Foundation.h>
5+
#import "ESTBaseVO.h"
6+
7+
DEPRECATED_MSG_ATTRIBUTE("Deprecated since 4.31.0. Please refer to ESTDeviceDetails instead.")
8+
@interface ESTNearableCloudSettingsVO : ESTBaseVO
9+
10+
@property (nonatomic, strong) NSString *applicationVersion;
11+
@property (nonatomic, strong) NSString *bootloaderVersion;
12+
@property (nonatomic, strong) NSString *hardwareVersion;
13+
14+
@property (nonatomic, strong) NSNumber *power;
15+
@property (nonatomic, strong) NSNumber *advertisingInterval;
16+
17+
@property (nonatomic, strong) NSNumber *motionOnlyEnabled;
18+
19+
@property (nonatomic, strong) NSNumber *broadcastingScheme;
20+
@property (nonatomic, strong) NSString *eddystoneURL;
21+
22+
- (instancetype)initWithCloudData:(NSDictionary *)data;
23+
24+
@end
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Estimote Fleet Management SDK
2+
// Copyright © 2015 Estimote. All rights reserved.
3+
4+
#import <Foundation/Foundation.h>
5+
#import "ESTNearableCloudSettingsVO.h"
6+
#import "ESTBaseVO.h"
7+
8+
DEPRECATED_MSG_ATTRIBUTE("Deprecated since 4.31.0. Please use ESTDeviceDetails instead.")
9+
@interface ESTNearableCloudVO : ESTBaseVO
10+
11+
@property (nonatomic, strong) NSString *identifier;
12+
@property (nonatomic, strong) NSString *name;
13+
@property (nonatomic, strong) NSNumber *color;
14+
@property (nonatomic, strong) NSNumber *type;
15+
@property (nonatomic, strong) ESTNearableCloudSettingsVO *settings;
16+
17+
- (instancetype)initWithCloudData:(NSDictionary *)data;
18+
19+
@end

EstimoteFleetManagementSDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTNearableFirmwareVO.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// ESTNearableFirmwareVO.h
3-
// EstimoteSDK
3+
// EstimoteFleetManagementSDK
44
//
55
// Created by Marcin Klimek on 30/01/15.
66
// Copyright (c) 2015 Estimote. All rights reserved.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//
2+
// ESTNearableHardwareVO.h
3+
// EstimoteFleetManagementSDK
4+
//
5+
// Copyright (c) 2015 Estimote. All rights reserved.
6+
//
7+
8+
#import <Foundation/Foundation.h>
9+
10+
@interface ESTNearableHardwareVO : NSObject
11+
12+
@property (nonatomic, assign) NSNumber *hardwareId;
13+
@property (nonatomic, strong) NSString *hardwareName;
14+
15+
@end

0 commit comments

Comments
 (0)