mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
10 lines (9 loc) • 328 B
TypeScript
import { IPayioJwtPayloadUser } from '../interfaces/i-payload-user';
export declare class PayioJwtPayloadUserEntity implements IPayioJwtPayloadUser {
email: string | null;
id: string;
internationalCode: string;
name: string;
phoneNumber: string;
constructor(data?: Partial<PayioJwtPayloadUserEntity>);
}