cecon-interfaces
Version:
Interfaces de Projetos Cecon
22 lines (21 loc) • 693 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NatipayMercadoPagoEntity = void 0;
var NatipayMercadoPagoEntity = /** @class */ (function () {
function NatipayMercadoPagoEntity(data) {
this.amountPaid = 0;
this.paymentId = '';
this.paymentStatus = '';
this.preferenceId = '';
this.feeDetails = [];
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return NatipayMercadoPagoEntity;
}());
exports.NatipayMercadoPagoEntity = NatipayMercadoPagoEntity;