UNPKG

mobyo-interfaces

Version:
24 lines (23 loc) 773 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PayioJwtPayloadInfoEntity = void 0; var PayioJwtPayloadInfoEntity = /** @class */ (function () { // #endregion Properties (4) // #region Constructors (1) function PayioJwtPayloadInfoEntity(data) { // #region Properties (4) this.companyId = ''; this.companyName = ''; this.containerId = null; this.containerName = null; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return PayioJwtPayloadInfoEntity; }()); exports.PayioJwtPayloadInfoEntity = PayioJwtPayloadInfoEntity;