UNPKG

cecon-interfaces

Version:
20 lines (19 loc) 631 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.VoucherSponsorshipEntity = void 0; var VoucherSponsorshipEntity = /** @class */ (function () { function VoucherSponsorshipEntity(data) { // #region Properties (10) this.name = 'MERCHANT'; this.value = 0; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return VoucherSponsorshipEntity; }()); exports.VoucherSponsorshipEntity = VoucherSponsorshipEntity;