summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAlertManeuver.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLAlertManeuver.h')
-rw-r--r--SmartDeviceLink/SDLAlertManeuver.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLAlertManeuver.h b/SmartDeviceLink/SDLAlertManeuver.h
index 35e3630ba..238a93cc1 100644
--- a/SmartDeviceLink/SDLAlertManeuver.h
+++ b/SmartDeviceLink/SDLAlertManeuver.h
@@ -11,12 +11,17 @@
/**
* @since SmartDeviceLink 1.0
*/
+
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLAlertManeuver : SDLRPCRequest
-- (instancetype)initWithTTS:(NSString *)ttsText softButtons:(NSArray<SDLSoftButton *> *)softButtons;
-- (instancetype)initWithTTSChunks:(NSArray<SDLTTSChunk *> *)ttsChunks softButtons:(NSArray<SDLSoftButton *> *)softButtons;
+- (instancetype)initWithTTS:(nullable NSString *)ttsText softButtons:(nullable NSArray<SDLSoftButton *> *)softButtons;
+- (instancetype)initWithTTSChunks:(nullable NSArray<SDLTTSChunk *> *)ttsChunks softButtons:(nullable NSArray<SDLSoftButton *> *)softButtons;
-@property (strong) NSMutableArray<SDLTTSChunk *> *ttsChunks;
-@property (strong) NSMutableArray<SDLSoftButton *> *softButtons;
+@property (nullable, strong) NSMutableArray<SDLTTSChunk *> *ttsChunks;
+@property (nullable, strong) NSMutableArray<SDLSoftButton *> *softButtons;
@end
+
+NS_ASSUME_NONNULL_END