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