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