summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLUnsubscribeVehicleDataResponse.h
blob: bced5894e81992bfbfc195f11d05eb598e8bfef2 (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
//  SDLUnsubscribeVehicleDataResponse.h
//

#import "SDLRPCResponse.h"

@class SDLVehicleDataResult;


/**
 * Unsubscribe Vehicle Data Response is sent, when UnsubscribeVehicleData has been called
 *
 * @since SmartDeviceLink 2.0
 */

NS_ASSUME_NONNULL_BEGIN

@interface SDLUnsubscribeVehicleDataResponse : SDLRPCResponse

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @abstract A SDLVehicleDataResult* value. Current angle of the steering wheel (in deg)
 */
@property (strong, nonatomic, nullable) SDLVehicleDataResult *steeringWheelAngle;
@property (strong, nonatomic, nullable) SDLVehicleDataResult *eCallInfo;
@property (strong, nonatomic, nullable) SDLVehicleDataResult *airbagStatus;
@property (strong, nonatomic, nullable) SDLVehicleDataResult *emergencyEvent;
@property (strong, nonatomic, nullable) SDLVehicleDataResult *clusterModes;
@property (strong, nonatomic, nullable) SDLVehicleDataResult *myKey;

@end

NS_ASSUME_NONNULL_END