cecon-interfaces
Version:
Interfaces de Projetos Cecon
38 lines (37 loc) • 1.42 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GlobalSettingMasterEntity = void 0;
var GlobalSettingMasterEntity = /** @class */ (function () {
// #endregion Properties (20)
// #region Constructors (1)
function GlobalSettingMasterEntity(data) {
// #region Properties (20)
this.deleteInvoicesPlacedDays = 10;
this.deleteSubscriptionsCompanyPlacedDays = 2;
this.deleteSubscriptionsCustomerPlacedDays = 2;
this.subscriptionSuspendedTimes = 3;
this.subscriptionsCompanyBillingDays = 6;
this.subscriptionsCompanyCancelDays = 1;
this.subscriptionsCompanyExpireDays = 1;
this.subscriptionsCompanySuspendDays = 1;
this.subscriptionsCustomerBillingDays = 7;
this.subscriptionsCustomerSuspendDays = 1;
this.waServerApikey = '';
this.waServerBaseUrl = '';
this.waServerGlobalKey = '';
this.waServerInstanceName = '';
this.waServerNumber = '';
this.id = '';
this.billingDays = 6;
this.resumeVersion = '1.0.0';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return GlobalSettingMasterEntity;
}());
exports.GlobalSettingMasterEntity = GlobalSettingMasterEntity;