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


#import "SDLRPCRequest.h"

/** Updates the list of next maneuvers, which can be requested by the user pressing the softbutton<br>
 * “Turns” on the Navigation base screen. Three softbuttons are predefined by the system: Up, Down, Close.
 *<p>
 * @since SmartDeviceLink 2.0
 */
@interface SDLUpdateTurnList : SDLRPCRequest

/**
 *  Optional, SDLTurn, 1 - 100 entries
 */
@property (strong) NSMutableArray *turnList;

/**
 *  Required, SDLSoftButton, 0 - 1 Entries
 */
@property (strong) NSMutableArray *softButtons;

@end