summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLStartTime.h
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-10-22 21:33:33 -0600
committerMuller, Alexander (A.) <amulle19@ford.com>2016-10-22 21:33:33 -0600
commit29df55dcd367781e6f3f10482e07f070008832a8 (patch)
treed615e95afc57270eead9c0edf9411d16ee2b19d0 /SmartDeviceLink/SDLStartTime.h
parentdfc28adc2373a3aafb4bf3e3535199e4c2c2b217 (diff)
downloadsdl_ios-29df55dcd367781e6f3f10482e07f070008832a8.tar.gz
Updated all NSNumbers with type generic.
Diffstat (limited to 'SmartDeviceLink/SDLStartTime.h')
-rw-r--r--SmartDeviceLink/SDLStartTime.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLStartTime.h b/SmartDeviceLink/SDLStartTime.h
index 47c10674e..b3c47a827 100644
--- a/SmartDeviceLink/SDLStartTime.h
+++ b/SmartDeviceLink/SDLStartTime.h
@@ -18,20 +18,20 @@
*
* Required, Integer, 0 - 59
*/
-@property (strong) NSNumber *hours;
+@property (strong) NSNumber<SDLInt> *hours;
/**
* @abstract The minute of the media clock
*
* Required, Integer, 0 - 59
*/
-@property (strong) NSNumber *minutes;
+@property (strong) NSNumber<SDLInt> *minutes;
/**
* @abstract The second of the media clock
*
* Required, Integer, 0 - 59
*/
-@property (strong) NSNumber *seconds;
+@property (strong) NSNumber<SDLInt> *seconds;
@end