cannoli-interfaces
Version:
Interfaces de Projetos Cannoli
20 lines (19 loc) • 480 B
TypeScript
import { PayioUserTypeEnum } from '../enums';
export interface IUser {
accessCount: number;
active: boolean;
createdAt: Date;
currentCompanyId: string | null;
currentCompanyName: string | null;
email: string | null;
id: string;
imageUrl: string | null;
internationalCode: string;
lastAccessAt: Date;
name: string;
code: string | null;
phoneNumber: string;
tags: string[];
type: PayioUserTypeEnum;
updatedAt: Date;
}