// 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
* “Turns” on the Navigation base screen. Three softbuttons are predefined by the system: Up, Down, Close. *

* @since SmartDeviceLink 2.0 */ NS_ASSUME_NONNULL_BEGIN @interface SDLUpdateTurnList : SDLRPCRequest - (instancetype)initWithTurnList:(nullable NSArray *)turnList softButtons:(nullable NSArray *)softButtons; /** * Optional, SDLTurn, 1 - 100 entries */ @property (strong, nonatomic, nullable) NSArray *turnList; /** * Required, SDLSoftButton, 0 - 1 Entries */ @property (strong, nonatomic, nullable) NSArray *softButtons; @end NS_ASSUME_NONNULL_END