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;
}
