Request parameters for cancelling command-response requests.

At least one of requestId or nodeId must be provided.

  • If requestId is provided alone: cancels that specific request across all nodes.
  • If nodeId is provided alone: cancels all pending commands for that node.
  • If nodeId and cmdId are provided: cancels pending commands for that node with the specific cmd ID.
interface ESPCmdRespCancelRequest {
    cmdId?: number;
    nodeId?: string;
    requestId?: string;
}

Properties

cmdId?: number
nodeId?: string
requestId?: string