cecon-interfaces
Version:
Interfaces de Projetos Cecon
24 lines (23 loc) • 743 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioJwtPayloadUserEntity = void 0;
var PayioJwtPayloadUserEntity = /** @class */ (function () {
function PayioJwtPayloadUserEntity(data) {
this.email = null;
this.id = '';
this.internationalCode = '';
this.name = '';
this.phoneNumber = '';
this.type = null;
this.isAdmin = false;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioJwtPayloadUserEntity;
}());
exports.PayioJwtPayloadUserEntity = PayioJwtPayloadUserEntity;