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

#import "SDLRPCResponse.h"

@class SDLLocationDetails;

@interface SDLGetWayPointsResponse : SDLRPCResponse

/**
 * @abstract Array of waypoints
 *
 * @see SDLLocationDetails
 *
 * Optional, Array size 1 - 10
 */
@property (strong) NSArray<SDLLocationDetails *> *waypoints;

@end

__deprecated_msg("Use SDLGetWayPointsResponse instead")
    @interface SDLGetWaypointsResponse : SDLGetWayPointsResponse
                                         @end