summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDeleteCommand.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-05-25 08:44:23 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-05-25 08:44:23 -0400
commitfb8e9903a323acaf5fc78819bb3c203567542ab2 (patch)
treee40665103ac7db492e0a40e34cd92f3390defa55 /SmartDeviceLink/SDLDeleteCommand.h
parentf7540a02262832e34c67b0953dd8a1804a046fea (diff)
downloadsdl_ios-fb8e9903a323acaf5fc78819bb3c203567542ab2.tar.gz
Shift files into root directory
Diffstat (limited to 'SmartDeviceLink/SDLDeleteCommand.h')
-rw-r--r--SmartDeviceLink/SDLDeleteCommand.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLDeleteCommand.h b/SmartDeviceLink/SDLDeleteCommand.h
new file mode 100644
index 000000000..4f3b74d90
--- /dev/null
+++ b/SmartDeviceLink/SDLDeleteCommand.h
@@ -0,0 +1,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