cannoli-interfaces
Version:
Interfaces de Projetos Cannoli
22 lines (21 loc) • 607 B
TypeScript
import { IBaseCompany } from '../../general';
import { IOperator } from '../interfaces';
export declare class OperatorEntity implements IOperator {
active: boolean;
id: string;
companies: IBaseCompany[];
name: string;
doc: string | null;
email: string | null;
internationalCode: string;
phoneNumber: string | null;
phoneNumberVerified: boolean;
phoneNumberVerifiedAt: Date | null;
imageUrl: string | null;
tags: string[];
username: string;
password: string;
createdAt: Date;
updatedAt: Date;
constructor(data?: Partial<OperatorEntity>);
}