A command is deleted by:

  • a user (in a monitoring or connectivity environment)
  • OR a device type event handler or report parser function (through exec.dropCommand)
interface DeletedCommandEvent {
    command: Command;
    type: "deletedCommand";
}

Properties

Properties

command: Command
type: "deletedCommand"