summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAddSubMenu.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLAddSubMenu.h')
-rw-r--r--SmartDeviceLink/SDLAddSubMenu.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLAddSubMenu.h b/SmartDeviceLink/SDLAddSubMenu.h
index 6fe0c349d..b411a43bd 100644
--- a/SmartDeviceLink/SDLAddSubMenu.h
+++ b/SmartDeviceLink/SDLAddSubMenu.h
@@ -16,6 +16,9 @@
* Since <b>SmartDeviceLink 1.0</b><br>
* see SDLDeleteSubMenu SDLAddCommand SDLDeleteCommand
*/
+
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLAddSubMenu : SDLRPCRequest
- (instancetype)initWithId:(UInt32)menuId menuName:(NSString *)menuName;
@@ -28,7 +31,7 @@
* <i>SDLAddCommand</i> to which SDLSubMenu is the parent of the command being added
* <p>
*/
-@property (strong) NSNumber<SDLInt> *menuID;
+@property (strong, nonatomic) NSNumber<SDLInt> *menuID;
/**
* @abstract a position of menu
* @discussion An NSNumber pointer representing the position within the items
@@ -47,11 +50,13 @@
* the end of the list</li>
* </ul>
*/
-@property (strong) NSNumber<SDLInt> *position;
+@property (nullable, strong, nonatomic) NSNumber<SDLInt> *position;
/**
* @abstract a menuName which is displayed representing this submenu item
* @discussion NSString which will be displayed representing this submenu item
*/
-@property (strong) NSString *menuName;
+@property (strong, nonatomic) NSString *menuName;
@end
+
+NS_ASSUME_NONNULL_END