UNPKG

control-see

Version:

Control Util Documentos Electronicos SUNAT

44 lines 1.16 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AdditionalMonetaryTotal = void 0; class AdditionalMonetaryTotal { constructor(amt) { this.id = amt.id; this.payableAmount = amt.payableAmount; this.referenceAmount = amt.referenceAmount; this.totalAmount = amt.totalAmount; this.percent = amt.percent; } get id() { return this._id; } set id(id) { this._id = id; } get payableAmount() { return this._payableAmount; } set payableAmount(pa) { this._payableAmount = pa; } get referenceAmount() { return this._referenceAmount; } set referenceAmount(ra) { this._referenceAmount = ra; } get totalAmount() { return this._totalAmount; } set totalAmount(ta) { this._totalAmount = ta; } get percent() { return this._percent; } set percent(percent) { this._percent = percent; } } exports.AdditionalMonetaryTotal = AdditionalMonetaryTotal; //# sourceMappingURL=AdditionalMonetaryTotal.js.map