summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAirbagStatus.h
blob: 140b6af07d42ca025f9cf1ad61d3eb84c337acd2 (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
//  SDLAirbagStatus.h
//

#import "SDLRPCMessage.h"

#import "SDLVehicleDataEventStatus.h"

NS_ASSUME_NONNULL_BEGIN

/**
 A vehicle data status struct for airbags
 */
@interface SDLAirbagStatus : SDLRPCStruct

/**
 References signal "VedsDrvBag_D_Ltchd". See VehicleDataEventStatus.

 Required
 */
@property (strong, nonatomic) SDLVehicleDataEventStatus driverAirbagDeployed;

/**
 References signal "VedsDrvSideBag_D_Ltchd". See VehicleDataEventStatus.

 Required
 */
@property (strong, nonatomic) SDLVehicleDataEventStatus driverSideAirbagDeployed;

/**
 References signal "VedsDrvCrtnBag_D_Ltchd". See VehicleDataEventStatus

 Required
 */
@property (strong, nonatomic) SDLVehicleDataEventStatus driverCurtainAirbagDeployed;

/**
 References signal "VedsPasBag_D_Ltchd". See VehicleDataEventStatus.

 Required
 */
@property (strong, nonatomic) SDLVehicleDataEventStatus passengerAirbagDeployed;

/**
 References signal "VedsPasCrtnBag_D_Ltchd". See VehicleDataEventStatus.

 Required
 */
@property (strong, nonatomic) SDLVehicleDataEventStatus passengerCurtainAirbagDeployed;

/**
 References signal "VedsKneeDrvBag_D_Ltchd". See VehicleDataEventStatus.

 Required
 */
@property (strong, nonatomic) SDLVehicleDataEventStatus driverKneeAirbagDeployed;

/**
 References signal "VedsPasSideBag_D_Ltchd". See VehicleDataEventStatus.

 Required
 */
@property (strong, nonatomic) SDLVehicleDataEventStatus passengerSideAirbagDeployed;

/**
 References signal "VedsKneePasBag_D_Ltchd". See VehicleDataEventStatus.

 Required
 */
@property (strong, nonatomic) SDLVehicleDataEventStatus passengerKneeAirbagDeployed;

@end

NS_ASSUME_NONNULL_END