cannoli-interfaces
Version:
Interfaces de Projetos Cannoli
31 lines (30 loc) • 902 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.NatipayJwtPayloadEntity = void 0;
var NatipayJwtPayloadEntity = /** @class */ (function () {
// #endregion Properties (16)
// #region Constructors (1)
function NatipayJwtPayloadEntity(data) {
// #region Properties (16)
this.app = null;
this.aud = '';
this.device = null;
this.exp = 0;
this.iat = 0;
this.info = null;
this.iss = '';
this.jti = '';
this.sub = '';
this.type = null;
this.user = null;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return NatipayJwtPayloadEntity;
}());
exports.NatipayJwtPayloadEntity = NatipayJwtPayloadEntity;