UNPKG

cecon-interfaces

Version:
12 lines (11 loc) 419 B
import { EPayioUserType } from '../enums/user-type.enum'; import { IPayioJwtPayloadUser } from '../interfaces/i-payload-user'; export declare class PayioJwtPayloadUserEntity implements IPayioJwtPayloadUser { email: string | null; id: string; internationalCode: string; name: string; phoneNumber: string; type: EPayioUserType | null; constructor(data?: Partial<PayioJwtPayloadUserEntity>); }