summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLGetWaypointsResponse.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLGetWaypointsResponse.h')
-rw-r--r--SmartDeviceLink/SDLGetWaypointsResponse.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLGetWaypointsResponse.h b/SmartDeviceLink/SDLGetWaypointsResponse.h
index fe1489c7d..3da0b1a0d 100644
--- a/SmartDeviceLink/SDLGetWaypointsResponse.h
+++ b/SmartDeviceLink/SDLGetWaypointsResponse.h
@@ -5,6 +5,8 @@
@class SDLLocationDetails;
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLGetWayPointsResponse : SDLRPCResponse
/**
@@ -14,10 +16,12 @@
*
* Optional, Array size 1 - 10
*/
-@property (strong) NSArray<SDLLocationDetails *> *waypoints;
+@property (nullable, strong, nonatomic) NSArray<SDLLocationDetails *> *waypoints;
@end
__deprecated_msg("Use SDLGetWayPointsResponse instead")
@interface SDLGetWaypointsResponse : SDLGetWayPointsResponse
- @end
+@end
+
+NS_ASSUME_NONNULL_END