UNPKG

cecon-interfaces

Version:
23 lines (22 loc) 731 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NatipayJwtPayloadUserEntity = void 0; var NatipayJwtPayloadUserEntity = /** @class */ (function () { function NatipayJwtPayloadUserEntity(data) { this.email = null; this.id = ''; this.internationalCode = ''; this.memberRule = null; 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;