mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
30 lines (29 loc) • 970 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioScheduleProductEntity = void 0;
var PayioScheduleProductEntity = /** @class */ (function () {
// #endregion Properties (11)
// #region Constructors (1)
function PayioScheduleProductEntity(data) {
// #region Properties (11)
this.code = '';
this.description = '';
this.exceededWeightMessageText = '';
this.exceededWeightPrice = 0;
this.helpYourSelf = false;
this.id = '';
this.price = 0;
this.unit = 'KG';
this.weightLimitMessage = 0;
this.weightLimitPrice = 0;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioScheduleProductEntity;
}());
exports.PayioScheduleProductEntity = PayioScheduleProductEntity;