import { IBaseCompany } from '../../general';
export interface 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;
}
