node-red-contrib-whatsapp-link/groupRecipient.js

9 lines
246 B
JavaScript

module.exports = function(RED) {
function GroupRecipientNode(n) {
RED.nodes.createNode(this, n);
this.groupId = n.groupId;
this.name = n.name;
}
RED.nodes.registerType("group-recipient", GroupRecipientNode);
}