summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDeleteCommand.h
blob: 4cdf3e266045fa72e02c87cc9fc874365da0650e (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
//  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

- (instancetype)initWithId:(UInt32)commandId;

/**
 * @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, nonatomic) NSNumber<SDLInt> *cmdID;

@end