UNPKG

node-red-contrib-soap

Version:
13 lines 360 B
module.exports = function (RED) { function SoapConfig(n) { RED.nodes.createNode(this, n); this.wsdl = n.wsdl; this.auth = n.auth; this.user = n.user; this.pass = n.pass; this.key = n.key; this.cert = n.cert; this.token = n.token; } RED.nodes.registerType("soap-config", SoapConfig); }