mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
16 lines (15 loc) • 375 B
TypeScript
import { IAddress, ICoords } from '../../general';
import { IOrderTotal } from '../../order';
export interface IVoucherCustomer {
customerId: string;
cords: ICoords;
address: IAddress;
phoneNumber: string;
meta: string;
id: string;
itensCount: number;
total: IOrderTotal;
averageAmount: number;
createdAt: Date;
updatedAt: Date;
}