summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLOnWaypointChange.h
blob: 58b5fca81a652181d2418329d97210b4212addfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//  SDLOnWaypointChange.h
//

#import "SDLRPCNotification.h"

@class SDLLocationDetails;

@interface SDLOnWayPointChange : SDLRPCNotification

/**
 * @abstract Location address for display purposes only.
 *
 * Required, Array of Strings, Array size 1 - 10
 */
@property (copy, nonatomic) NSArray<SDLLocationDetails *> *waypoints;

@end

__deprecated_msg("Use SDLOnWayPointChange instead")
    @interface SDLOnWaypointChange : SDLOnWayPointChange
                                     @end