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

#import "SDLRPCMessage.h"

#import "SDLVehicleDataResultCode.h"


@interface SDLDIDResult : SDLRPCStruct {
}

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

@property (strong) SDLVehicleDataResultCode resultCode;
@property (strong) NSNumber *didLocation;
@property (strong) NSString *data;

@end