mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
24 lines (23 loc) • 785 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NatipayJwtPayloadInfoEntity = void 0;
var NatipayJwtPayloadInfoEntity = /** @class */ (function () {
// #endregion Properties (4)
// #region Constructors (1)
function NatipayJwtPayloadInfoEntity(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 NatipayJwtPayloadInfoEntity;
}());
exports.NatipayJwtPayloadInfoEntity = NatipayJwtPayloadInfoEntity;