cecon-interfaces
Version:
Interfaces de Projetos Cecon
14 lines (13 loc) • 350 B
TypeScript
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;
}