cecon-interfaces
Version:
Interfaces de Projetos Cecon
16 lines (15 loc) • 574 B
TypeScript
import { UserEntity } from '../../../users';
import { IPayioUserReport } from '../interfaces';
import { IPayioUser } from '../interfaces/i-user';
export declare class PayioUserEntity extends UserEntity implements IPayioUser {
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[];
constructor(data?: Partial<PayioUserEntity>);
}