UNPKG

cecon-interfaces

Version:
22 lines (21 loc) 693 B
"use strict"; 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;