summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLUnsubscribeVehicleDataResponse.h
blob: 396befcf8f40b3ef2000a1cb4435e8679da8d17f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//  SDLUnsubscribeVehicleDataResponse.h
//
//  Copyright (c) 2014 Ford Motor Company. All rights reserved.


#import "SDLRPCResponse.h"

#import "SDLVehicleDataResult.h"

@interface SDLUnsubscribeVehicleDataResponse : SDLRPCResponse {}

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

@property(strong) SDLVehicleDataResult* gps;
@property(strong) SDLVehicleDataResult* speed;
@property(strong) SDLVehicleDataResult* rpm;
@property(strong) SDLVehicleDataResult* fuelLevel;
@property(strong) SDLVehicleDataResult* fuelLevel_State;
@property(strong) SDLVehicleDataResult* instantFuelConsumption;
@property(strong) SDLVehicleDataResult* externalTemperature;
@property(strong) SDLVehicleDataResult* prndl;
@property(strong) SDLVehicleDataResult* tirePressure;
@property(strong) SDLVehicleDataResult* odometer;
@property(strong) SDLVehicleDataResult* beltStatus;
@property(strong) SDLVehicleDataResult* bodyInformation;
@property(strong) SDLVehicleDataResult* deviceStatus;
@property(strong) SDLVehicleDataResult* driverBraking;
@property(strong) SDLVehicleDataResult* wiperStatus;
@property(strong) SDLVehicleDataResult* headLampStatus;
@property(strong) SDLVehicleDataResult* engineTorque;
@property(strong) SDLVehicleDataResult* accPedalPosition;
@property(strong) SDLVehicleDataResult* steeringWheelAngle;
@property(strong) SDLVehicleDataResult* eCallInfo;
@property(strong) SDLVehicleDataResult* airbagStatus;
@property(strong) SDLVehicleDataResult* emergencyEvent;
@property(strong) SDLVehicleDataResult* clusterModes;
@property(strong) SDLVehicleDataResult* myKey;

@end