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