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

#import "SDLRPCMessage.h"

#import "SDLVehicleDataEventStatus.h"

@interface SDLAirbagStatus : SDLRPCStruct

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

@end