summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLBeltStatus.h
blob: 7a25dfea913074c14f047c8c4823aac7c947b8a1 (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
//  SDLBeltStatus.h
//

#import "SDLRPCMessage.h"

#import "SDLVehicleDataEventStatus.h"

@interface SDLBeltStatus : SDLRPCStruct

@property (strong, nonatomic) SDLVehicleDataEventStatus driverBeltDeployed;
@property (strong, nonatomic) SDLVehicleDataEventStatus passengerBeltDeployed;
@property (strong, nonatomic) SDLVehicleDataEventStatus passengerBuckleBelted;
@property (strong, nonatomic) SDLVehicleDataEventStatus driverBuckleBelted;
@property (strong, nonatomic) SDLVehicleDataEventStatus leftRow2BuckleBelted;
@property (strong, nonatomic) SDLVehicleDataEventStatus passengerChildDetected;
@property (strong, nonatomic) SDLVehicleDataEventStatus rightRow2BuckleBelted;
@property (strong, nonatomic) SDLVehicleDataEventStatus middleRow2BuckleBelted;
@property (strong, nonatomic) SDLVehicleDataEventStatus middleRow3BuckleBelted;
@property (strong, nonatomic) SDLVehicleDataEventStatus leftRow3BuckleBelted;
@property (strong, nonatomic) SDLVehicleDataEventStatus rightRow3BuckleBelted;
@property (strong, nonatomic) SDLVehicleDataEventStatus leftRearInflatableBelted;
@property (strong, nonatomic) SDLVehicleDataEventStatus rightRearInflatableBelted;
@property (strong, nonatomic) SDLVehicleDataEventStatus middleRow1BeltDeployed;
@property (strong, nonatomic) SDLVehicleDataEventStatus middleRow1BuckleBelted;

@end