diff options
Diffstat (limited to 'SmartDeviceLink/SDLBodyInformation.h')
-rw-r--r-- | SmartDeviceLink/SDLBodyInformation.h | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/SmartDeviceLink/SDLBodyInformation.h b/SmartDeviceLink/SDLBodyInformation.h index 4729ffc6c..a0d626b57 100644 --- a/SmartDeviceLink/SDLBodyInformation.h +++ b/SmartDeviceLink/SDLBodyInformation.h @@ -10,41 +10,46 @@ /** * The body information including power modes. */ + +NS_ASSUME_NONNULL_BEGIN + @interface SDLBodyInformation : SDLRPCStruct /** * @abstract References signal "PrkBrkActv_B_Actl". */ -@property (strong) NSNumber<SDLBool> *parkBrakeActive; +@property (strong, nonatomic) NSNumber<SDLBool> *parkBrakeActive; /** * @abstract References signal "Ignition_Switch_Stable". See IgnitionStableStatus. */ -@property (strong) SDLIgnitionStableStatus ignitionStableStatus; +@property (strong, nonatomic) SDLIgnitionStableStatus ignitionStableStatus; /** * @abstract References signal "Ignition_status". See IgnitionStatus. */ -@property (strong) SDLIgnitionStatus ignitionStatus; +@property (strong, nonatomic) SDLIgnitionStatus ignitionStatus; /** * @abstract References signal "DrStatDrv_B_Actl". */ -@property (strong) NSNumber<SDLBool> *driverDoorAjar; +@property (nullable, strong, nonatomic) NSNumber<SDLBool> *driverDoorAjar; /** * @abstract References signal "DrStatPsngr_B_Actl". */ -@property (strong) NSNumber<SDLBool> *passengerDoorAjar; +@property (nullable, strong, nonatomic) NSNumber<SDLBool> *passengerDoorAjar; /** * @abstract References signal "DrStatRl_B_Actl". */ -@property (strong) NSNumber<SDLBool> *rearLeftDoorAjar; +@property (nullable, strong, nonatomic) NSNumber<SDLBool> *rearLeftDoorAjar; /** * @abstract References signal "DrStatRr_B_Actl". */ -@property (strong) NSNumber<SDLBool> *rearRightDoorAjar; +@property (nullable, strong, nonatomic) NSNumber<SDLBool> *rearRightDoorAjar; @end + +NS_ASSUME_NONNULL_END |