summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDeleteCommand.h
blob: 4f3b74d900e58ee7d55e5998cb84f9db203999c7 (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
34
35
36
37
38
39
40
41
42
43
//  SDLDeleteCommand.h
//


#import "SDLRPCRequest.h"

/**
 * Removes a command from the Command Menu
 * <p>
 * <b>HMI Status Requirements:</b><br/>
 * HMILevel: FULL, LIMITED or BACKGROUND<br/>
 * AudioStreamingState: N/A<br/>
 * SystemContext: Should not be attempted when VRSESSION or MENU
 * </p>
 *
 * Since <b>SmartDeviceLink 1.0</b><br>
 * see SDLAddCommand SDLAddSubMenu SDLDeleteSubMenu
 */
@interface SDLDeleteCommand : SDLRPCRequest {
}

/**
 * Constructs a new SDLDeleteCommand object
 */
- (instancetype)init;
/**
 * Constructs a new SDLDeleteCommand object indicated by the NSMutableDictionary
 * parameter
 * <p>
 *
 * @param dict The dictionary to use
 */
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;

/**
 * @abstract the Command ID that identifies the Command to be deleted from Command Menu
 * @discussion an NSNumber value representing Command ID
 *            <p>
 *            <b>Notes: </b>Min Value: 0; Max Value: 2000000000
 */
@property (strong) NSNumber *cmdID;

@end