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

#import "SDLRPCMessage.h"

@class SDLVehicleDataType;
@class SDLVehicleDataResultCode;


@interface SDLVehicleDataResult : SDLRPCStruct {
}

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

@property (strong) SDLVehicleDataType *dataType;
@property (strong) SDLVehicleDataResultCode *resultCode;

@end