UNPKG

cecon-interfaces

Version:
25 lines (24 loc) 873 B
"use strict"; 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;