UNPKG

mobyo-interfaces

Version:
25 lines (24 loc) 786 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PayioJwtPayloadUserEntity = void 0; var PayioJwtPayloadUserEntity = /** @class */ (function () { // #endregion Properties (6) // #region Constructors (1) function PayioJwtPayloadUserEntity(data) { // #region Properties (6) this.email = null; this.id = ''; this.internationalCode = ''; this.name = ''; this.phoneNumber = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return PayioJwtPayloadUserEntity; }()); exports.PayioJwtPayloadUserEntity = PayioJwtPayloadUserEntity;