summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLNavigationCapability.h
blob: 7879f5308ccaf3d1673352e1122f8af7a8b3568f (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
//
//  SDLNavigationCapability.h
//  SmartDeviceLink-iOS
//
//  Created by Joel Fischer on 7/11/17.
//  Copyright © 2017 smartdevicelink. All rights reserved.
//

#import "SDLRPCStruct.h"

NS_ASSUME_NONNULL_BEGIN

@interface SDLNavigationCapability : SDLRPCStruct

- (instancetype)initWithSendLocation:(BOOL)sendLocationEnabled waypoints:(BOOL)waypointsEnabled;

/**
 Whether or not the SendLocation RPC is enabled.
 Boolean, optional
 */
@property (nullable, copy, nonatomic) NSNumber *sendLocationEnabled;

/**
 Whether or not Waypoint related RPCs are enabled.
 Boolean, optional
 */
@property (nullable, copy, nonatomic) NSNumber *getWayPointsEnabled;

@end

NS_ASSUME_NONNULL_END