cannoli-interfaces
Version:
Interfaces de Projetos Cannoli
22 lines (21 loc) • 590 B
TypeScript
import { PayioUserTypeEnum } from '../enums';
import { IUser } from '../interfaces';
export declare class UserEntity implements IUser {
accessCount: number;
active: boolean;
code: string | null;
createdAt: Date;
currentCompanyId: string | null;
currentCompanyName: string | null;
email: string | null;
id: string;
imageUrl: string | null;
internationalCode: string;
lastAccessAt: Date;
name: string;
phoneNumber: string;
tags: string[];
type: PayioUserTypeEnum;
updatedAt: Date;
constructor(data?: Partial<UserEntity>);
}