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



#import "SDLRPCMessage.h"

@interface SDLDeviceInfo : SDLRPCStruct {}

-(id) init;
-(id) initWithDictionary:(NSMutableDictionary*) dict;

@property(strong) NSString* hardware;
@property(strong) NSString* firmwareRev;
@property(strong) NSString* os;
@property(strong) NSString* osVersion;
@property(strong) NSString* carrier;
@property(strong) NSNumber* maxNumberRFCOMMPorts;

@end