UNPKG

mobyo-interfaces

Version:
19 lines (18 loc) 450 B
import { ICoords } from '../../../general'; export interface IOrdersCustomerPhone { description: string; localizer: string; localizerExpiration: string; number: string; } export interface IOrderCustomerV3 { documentNumber: string; email: string; id: string; name: string; ordersCountOnMerchant: number; phone: IOrdersCustomerPhone; picture: string; birthday: Date | null; coords: ICoords | null; }