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

#import "SDLRPCMessage.h"

@class SDLVehicleDataEventStatus;


@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