summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLUpdateTurnList.h
blob: d5d9daf6af4b56a3236d2cebd081051c076f2e2a (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
25
26
27
28
//  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 {
}

- (instancetype)init;
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;

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

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

@end