blob: d12e42eb7cd4a752062c71868bb58e01dc53c4dd (
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
27
28
29
30
31
|
// SDLBeltStatus.h
//
#import "SDLRPCMessage.h"
@class SDLVehicleDataEventStatus;
@interface SDLBeltStatus : SDLRPCStruct {
}
- (instancetype)init;
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
@property (strong) SDLVehicleDataEventStatus *driverBeltDeployed;
@property (strong) SDLVehicleDataEventStatus *passengerBeltDeployed;
@property (strong) SDLVehicleDataEventStatus *passengerBuckleBelted;
@property (strong) SDLVehicleDataEventStatus *driverBuckleBelted;
@property (strong) SDLVehicleDataEventStatus *leftRow2BuckleBelted;
@property (strong) SDLVehicleDataEventStatus *passengerChildDetected;
@property (strong) SDLVehicleDataEventStatus *rightRow2BuckleBelted;
@property (strong) SDLVehicleDataEventStatus *middleRow2BuckleBelted;
@property (strong) SDLVehicleDataEventStatus *middleRow3BuckleBelted;
@property (strong) SDLVehicleDataEventStatus *leftRow3BuckleBelted;
@property (strong) SDLVehicleDataEventStatus *rightRow3BuckleBelted;
@property (strong) SDLVehicleDataEventStatus *leftRearInflatableBelted;
@property (strong) SDLVehicleDataEventStatus *rightRearInflatableBelted;
@property (strong) SDLVehicleDataEventStatus *middleRow1BeltDeployed;
@property (strong) SDLVehicleDataEventStatus *middleRow1BuckleBelted;
@end
|