summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSetMediaClockTimer.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLSetMediaClockTimer.h')
-rw-r--r--SmartDeviceLink/SDLSetMediaClockTimer.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLSetMediaClockTimer.h b/SmartDeviceLink/SDLSetMediaClockTimer.h
index 09ba6344a..f561299f5 100644
--- a/SmartDeviceLink/SDLSetMediaClockTimer.h
+++ b/SmartDeviceLink/SDLSetMediaClockTimer.h
@@ -17,6 +17,9 @@
*
* Since SmartDeviceLink 1.0
*/
+
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLSetMediaClockTimer : SDLRPCRequest
- (instancetype)initWithUpdateMode:(SDLUpdateMode)updateMode hours:(UInt8)hours minutes:(UInt8)minutes seconds:(UInt8)seconds;
@@ -35,13 +38,13 @@
* <li>Will be ignored for PAUSE/RESUME and CLEAR</li>
* </ul>
*/
-@property (strong) SDLStartTime *startTime;
+@property (strong, nonatomic, nullable) SDLStartTime *startTime;
/**
* @abstract An END time of type SDLStartTime, specifying hour, minute, second values
*
* @discussion An SDLStartTime object with specifying hour, minute, second values
*/
-@property (strong) SDLStartTime *endTime;
+@property (strong, nonatomic, nullable) SDLStartTime *endTime;
/**
* @abstract The media clock/timer update mode (COUNTUP/COUNTDOWN/PAUSE/RESUME)
*
@@ -55,6 +58,8 @@
* the timer's value when it was paused</li>
* </ul>
*/
-@property (strong) SDLUpdateMode updateMode;
+@property (strong, nonatomic) SDLUpdateMode updateMode;
@end
+
+NS_ASSUME_NONNULL_END