summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLUnsubscribeVehicleDataResponse.h
blob: 21e906d9804360c2f7f2fd56b86757e0f0c3fe6f (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
//  SDLUnsubscribeVehicleDataResponse.h
//



#import "SDLRPCResponse.h"

#import "SDLVehicleDataResult.h"

/**
 * Unsubscribe Vehicle Data Response is sent, when UnsubscribeVehicleData has been called
 *
 * @since SmartDeviceLink 2.0
 */
@interface SDLUnsubscribeVehicleDataResponse : SDLRPCResponse {}

/**
 * @abstract Constructs a new SDLUnsubscribeVehicleDataResponse object
 */
-(id) init;

/**
 * @abstract Constructs a new SDLUnsubscribeVehicleDataResponse object indicated by the NSMutableDictionary
 * parameter
 * @param dict The NSMutableDictionary to use
 */
-(id) initWithDictionary:(NSMutableDictionary*) dict;

/**
 * @abstract A SDLVehicleDataResult* value. See GPSData.
 */
@property(strong) SDLVehicleDataResult* gps;

/**
 * @abstract A SDLVehicleDataResult* value. The vehicle speed in kilometers per hour.
 */
@property(strong) SDLVehicleDataResult* speed;

/**
 * @abstract A SDLVehicleDataResult* value. The number of revolutions per minute of the engine.
 */
@property(strong) SDLVehicleDataResult* rpm;

/**
 * @abstract A SDLVehicleDataResult* value. The fuel level in the tank (percentage)
 */
@property(strong) SDLVehicleDataResult* fuelLevel;

/**
 * @abstract A SDLVehicleDataResult* value. The fuel level state.
 */
@property(strong) SDLVehicleDataResult* fuelLevel_State;

/**
 * @abstract A SDLVehicleDataResult* value. The instantaneous fuel consumption in microlitres.
 */
@property(strong) SDLVehicleDataResult* instantFuelConsumption;

/**
 * @abstract A SDLVehicleDataResult* value. The external temperature in degrees celsius.
 */
@property(strong) SDLVehicleDataResult* externalTemperature;

/**
 * @abstract A SDLVehicleDataResult* value. See PRNDL.
 */
@property(strong) SDLVehicleDataResult* prndl;

/**
 * @abstract A SDLVehicleDataResult* value. See TireStatus.
 */
@property(strong) SDLVehicleDataResult* tirePressure;

/**
 * @abstract A SDLVehicleDataResult* value. Odometer in km.
 */
@property(strong) SDLVehicleDataResult* odometer;

/**
 * @abstract A SDLVehicleDataResult* value. The status of the seat belts.
 */
@property(strong) SDLVehicleDataResult* beltStatus;

/**
 * @abstract A SDLVehicleDataResult* value. The body information including power modes.
 */
@property(strong) SDLVehicleDataResult* bodyInformation;

/**
 * @abstract A SDLVehicleDataResult* value. The device status including signal and battery strength.
 */
@property(strong) SDLVehicleDataResult* deviceStatus;

/**
 * @abstract A SDLVehicleDataResult* value. The status of the brake pedal.
 */
@property(strong) SDLVehicleDataResult* driverBraking;

/**
 * @abstract A SDLVehicleDataResult* value. The status of the wipers.
 */
@property(strong) SDLVehicleDataResult* wiperStatus;

/**
 * @abstract A SDLVehicleDataResult* value. Status of the head lamps.
 */
@property(strong) SDLVehicleDataResult* headLampStatus;

/**
 * @abstract A SDLVehicleDataResult* value. Torque value for engine (in Nm) on non-diesel variants.
 */
@property(strong) SDLVehicleDataResult* engineTorque;

/**
 * @abstract A SDLVehicleDataResult* value. Accelerator pedal position (percentage depressed)
 */
@property(strong) SDLVehicleDataResult* accPedalPosition;

/**
 * @abstract A SDLVehicleDataResult* value. Current angle of the steering wheel (in deg)
 */
@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