mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
17 lines (16 loc) • 482 B
TypeScript
import { ICustomer } from '../../../customer';
import { IAddress } from '../../../general';
import { IPrivacySetting } from './i-customer-privacy';
export interface ICustomerMobyo extends ICustomer {
active: boolean;
addresses: IAddress[];
companyId: string;
containerId: string;
engines: string[];
isTest: boolean;
ordersCountOnRestaurant: number;
uid: string;
version: string;
birthday: Date | null;
privacySettings: IPrivacySetting;
}