summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLUpdateTurnList.h
blob: 87345996758b2fb3a91a734417b0c6cd47bfa9ae (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
29
//  SDLUpdateTurnList.h
//


#import "SDLRPCRequest.h"

@class SDLSoftButton;
@class SDLTurn;

/** 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)initWithTurnList:(NSArray<SDLTurn *> *)turnList softButtons:(NSArray<SDLSoftButton *> *)softButtons;

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

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

@end