cecon-interfaces
Version:
Interfaces de Projetos Cecon
31 lines (30 loc) • 1.03 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DesenfilaContainerOrderPaymentEntity = void 0;
var DesenfilaContainerOrderPaymentEntity = /** @class */ (function () {
function DesenfilaContainerOrderPaymentEntity(data) {
this.amount = 0;
this.code = '';
this.couponAmount = 0;
this.createdAt = new Date();
this.customerId = '';
this.dateAproved = new Date();
this.description = '';
this.id = '';
this.marketPlaceAmount = 0;
this.merchant = '';
this.merchantName = '';
this.name = '';
this.transaction = '';
this.transactions = [];
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return DesenfilaContainerOrderPaymentEntity;
}());
exports.DesenfilaContainerOrderPaymentEntity = DesenfilaContainerOrderPaymentEntity;