UNPKG

cecon-interfaces

Version:
14 lines (13 loc) 434 B
import { IUser } from '../../../users'; import { IPayioUserReport } from './i-user-report'; export interface IPayioUser extends IUser { accessCode: string | null; accessCodeExpiration: Date | null; code: string | null; currentCompanyId: string | null; currentCompanyName: string | null; faceId: string | null; faceImage64: string | null; faceLastUpdate: Date | null; reports: IPayioUserReport[]; }