UNPKG

cecon-interfaces

Version:
22 lines (21 loc) 685 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PayioJwtPayloadAppEntity = void 0; var PayioJwtPayloadAppEntity = /** @class */ (function () { // #endregion Properties (3) // #region Constructors (1) function PayioJwtPayloadAppEntity(data) { // #region Properties (3) this.id = ''; this.slug = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return PayioJwtPayloadAppEntity; }()); exports.PayioJwtPayloadAppEntity = PayioJwtPayloadAppEntity;