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