cecon-interfaces
Version:
Interfaces de Projetos Cecon
25 lines (24 loc) • 873 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioJwtPayloadSubscriptionEntity = void 0;
var general_1 = require("../../../general");
var PayioJwtPayloadSubscriptionEntity = /** @class */ (function () {
// #endregion Properties (4)
// #region Constructors (1)
function PayioJwtPayloadSubscriptionEntity(data) {
// #region Properties (4)
this.expiresAt = 0;
this.id = '';
this.status = general_1.ESubsStatus.PENDING;
this.usedTrial = false;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioJwtPayloadSubscriptionEntity;
}());
exports.PayioJwtPayloadSubscriptionEntity = PayioJwtPayloadSubscriptionEntity;