UNPKG

cannoli-interfaces

Version:
22 lines (21 loc) 607 B
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>); }