cecon-interfaces
Version:
Interfaces de Projetos Cecon
21 lines (20 loc) • 662 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioJwtPayloadMachineEntity = void 0;
var PayioJwtPayloadMachineEntity = /** @class */ (function () {
function PayioJwtPayloadMachineEntity(data) {
this.id = 0;
this.name = '';
this.uid = null;
this.settings = {};
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioJwtPayloadMachineEntity;
}());
exports.PayioJwtPayloadMachineEntity = PayioJwtPayloadMachineEntity;