UNPKG

cecon-interfaces

Version:
24 lines (23 loc) 743 B
"use strict"; 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;