UNPKG

327 BJavaScriptView Raw
1"use strict";
2var EndNode = (function () {
3 function EndNode(vendorThingID) {
4 this.type = 'EnergyNode';
5 this.password = '12345';
6 this.lastUpdate = new Date().valueOf();
7 this.online = true;
8 this.vendorThingID = vendorThingID;
9 }
10 return EndNode;
11}());
12exports.EndNode = EndNode;