UNPKG

cannoli-interfaces

Version:
25 lines (24 loc) 798 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NatipayJwtPayloadUserEntity = void 0; var NatipayJwtPayloadUserEntity = /** @class */ (function () { // #endregion Properties (6) // #region Constructors (1) function NatipayJwtPayloadUserEntity(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 NatipayJwtPayloadUserEntity; }()); exports.NatipayJwtPayloadUserEntity = NatipayJwtPayloadUserEntity;