summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDeviceInfo.h
blob: a1e62dc24ef62659c1e43e503be1bb5695802056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//  SDLDeviceInfo.h
//

#import "SDLRPCMessage.h"

NS_ASSUME_NONNULL_BEGIN

@interface SDLDeviceInfo : SDLRPCStruct

+ (instancetype)currentDevice;

@property (nullable, strong) NSString *hardware;
@property (nullable, strong) NSString *firmwareRev;
@property (nullable, strong) NSString *os;
@property (nullable, strong) NSString *osVersion;
@property (nullable, strong) NSString *carrier;
@property (nullable, strong) NSNumber<SDLInt> *maxNumberRFCOMMPorts;

@end

NS_ASSUME_NONNULL_END