cecon-interfaces
Version:
Interfaces de Projetos Cecon
23 lines (22 loc) • 697 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NatipayCardDataEntity = void 0;
var NatipayCardDataEntity = /** @class */ (function () {
function NatipayCardDataEntity(data) {
this.cvv = '';
this.formattedNumber = '';
this.isValid = false;
this.maskedNumber = '';
this.number = '';
this.validThru = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return NatipayCardDataEntity;
}());
exports.NatipayCardDataEntity = NatipayCardDataEntity;