import {IAddress, IStore } from './'

export interface ICart {
    billingAddress?: IAddress;
    shippingAddress?: IAddress;
    products?: any[];
    discounts?: any[];
    individualDiscounts?: any[];
    shipping?: {
        cost: number;
        method: string;
        store?: IStore;
    };
    bus?: {
        id: string;
        ref: string;
    }
    salesRep?: string;
    comment?: {
        message: string;
    };
    mutualAgreement?: {
        message: string;
    }
    quoteId?: string;
    misc?: any[];
}