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

@interface SDLAirbagStatus : SDLRPCStruct {
}

- (instancetype)init;
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;

@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