cecon-interfaces
Version:
Interfaces de Projetos Cecon
25 lines (24 loc) • 746 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrderMerchantEntity = void 0;
var OrderMerchantEntity = /** @class */ (function () {
// #endregion Properties (5)
// #region Constructors (1)
function OrderMerchantEntity(data) {
// #region Properties (5)
this.description = null;
this.doc = null;
this.docType = null;
this.id = null;
this.name = null;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return OrderMerchantEntity;
}());
exports.OrderMerchantEntity = OrderMerchantEntity;