summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLShowConstantTBT.h
blob: ae5dda10879df87bb623e4818be4033b90cf11f5 (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
30
31
32
33
//  SDLShowConstantTBT.h
//

#import "SDLRPCRequest.h"

@class SDLImage;


/** This RPC is used to update the user with navigation information<br>
 *  for the constantly shown screen (base screen),but also for the<br>
 *  alert type screen.
 *<p>
 * @since SmartDeviceLink 2.0
 */
@interface SDLShowConstantTBT : SDLRPCRequest {
}

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

@property (strong) NSString *navigationText1;
@property (strong) NSString *navigationText2;
@property (strong) NSString *eta;
@property (strong) NSString *timeToDestination;
@property (strong) NSString *totalDistance;
@property (strong) SDLImage *turnIcon;
@property (strong) SDLImage *nextTurnIcon;
@property (strong) NSNumber *distanceToManeuver;
@property (strong) NSNumber *distanceToManeuverScale;
@property (strong) NSNumber *maneuverComplete;
@property (strong) NSMutableArray *softButtons;

@end