summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLHMICapabilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLHMICapabilities.h')
-rw-r--r--SmartDeviceLink/SDLHMICapabilities.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLHMICapabilities.h b/SmartDeviceLink/SDLHMICapabilities.h
index b20e5b27d..6c7fe43d5 100644
--- a/SmartDeviceLink/SDLHMICapabilities.h
+++ b/SmartDeviceLink/SDLHMICapabilities.h
@@ -4,6 +4,8 @@
#import "SDLRPCStruct.h"
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLHMICapabilities : SDLRPCStruct
/**
@@ -11,13 +13,15 @@
Boolean value. Optional.
*/
-@property (copy, nonatomic) NSNumber<SDLBool> *navigation;
+@property (nullable, copy, nonatomic) NSNumber<SDLBool> *navigation;
/**
Availability of build in phone. True: Available, False: Not Available
Boolean value. Optional.
*/
-@property (copy, nonatomic) NSNumber<SDLBool> *phoneCall;
+@property (nullable, copy, nonatomic) NSNumber<SDLBool> *phoneCall;
@end
+
+NS_ASSUME_NONNULL_END