UNPKG

cecon-interfaces

Version:
14 lines (13 loc) 350 B
import { EDocType } from '../../..'; import { EPayioUserType } from '../enums/user-type.enum'; export interface IPayioJwtPayloadUser { email: string | null; id: string; internationalCode: string; isAdmin: boolean; name: string; phoneNumber: string; doc?: string; docType?: EDocType; type: EPayioUserType | null; }