summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAirbagStatus.h
blob: ce10945c75645e0ab825c90fd96ff144545cd585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//  SDLAirbagStatus.h
//

#import "SDLRPCMessage.h"

#import "SDLVehicleDataEventStatus.h"

NS_ASSUME_NONNULL_BEGIN

@interface SDLAirbagStatus : SDLRPCStruct

@property (strong, nonatomic) SDLVehicleDataEventStatus driverAirbagDeployed;
@property (strong, nonatomic) SDLVehicleDataEventStatus driverSideAirbagDeployed;
@property (strong, nonatomic) SDLVehicleDataEventStatus driverCurtainAirbagDeployed;
@property (strong, nonatomic) SDLVehicleDataEventStatus passengerAirbagDeployed;
@property (strong, nonatomic) SDLVehicleDataEventStatus passengerCurtainAirbagDeployed;
@property (strong, nonatomic) SDLVehicleDataEventStatus driverKneeAirbagDeployed;
@property (strong, nonatomic) SDLVehicleDataEventStatus passengerSideAirbagDeployed;
@property (strong, nonatomic) SDLVehicleDataEventStatus passengerKneeAirbagDeployed;

@end

NS_ASSUME_NONNULL_END