cecon-interfaces
Version:
Interfaces de Projetos Cecon
19 lines (18 loc) • 586 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioDeviceConfigEntity = void 0;
var PayioDeviceConfigEntity = /** @class */ (function () {
function PayioDeviceConfigEntity(data) {
this.key = null;
this.value = null;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioDeviceConfigEntity;
}());
exports.PayioDeviceConfigEntity = PayioDeviceConfigEntity;