summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLGetWaypointsResponse.h
blob: ab3882192aebd57a3ee307d06d4920960a4079ae (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;

NS_ASSUME_NONNULL_BEGIN

@interface SDLGetWayPointsResponse : SDLRPCResponse

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

@end

NS_ASSUME_NONNULL_END