import { BaseModel } from './baseModel'; import { OperationCenter } from './operationCenter'; import { Product } from './product'; import { ObjectId } from 'mongodb'; export interface Employee extends BaseModel { status: boolean; name?: string; code?: string; mobile: string; organizationId?: string; email?: string; password?: string; operationCenters: OperationCenter[] | ObjectId[]; reportingManager?: Employee; permissions?: string[]; roles?: string[]; skills?: string[]; processableProducts?: Product[] | ObjectId[]; user?: string; linkedRealmUser?: string; }