UNPKG

mobyo-interfaces

Version:
16 lines (15 loc) 477 B
import { IDelivererMobyo } from '..'; import { IOrder } from '../../../order'; export declare class DelivererMobyoEntity implements IDelivererMobyo { active: boolean; email?: string | undefined; id: string; internationalCode: string; name: string; nickName: string; ordersCountDeliveredOnRestaurant: IOrder[]; phoneNumber: string; pictureUrl?: string | undefined; tags: string[]; constructor(data?: Partial<DelivererMobyoEntity>); }