mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
16 lines (15 loc) • 477 B
TypeScript
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>);
}