cecon-interfaces
Version:
Interfaces de Projetos Cecon
22 lines (21 loc) • 685 B
JavaScript
;
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;