blob: 2bc9e7769e47b43c938b5626abe367b7cd265273 (
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
|
// 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
*/
NS_ASSUME_NONNULL_BEGIN
@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
NS_ASSUME_NONNULL_END
|