Basket: {
    adjustedMerchandizeTotalTax?: number;
    adjustedShippingTotalTax?: number;
    agentBasket?: boolean;
    basketId?: string;
    billingAddress?: OrderAddress;
    bonusDiscountLineItems?: BonusDiscountLineItem[];
    channelType?: string;
    couponItems?: CouponItem[];
    creationDate?: any;
    currency?: string;
    customerInfo?: CustomerInfo;
    giftCertificateItems?: GiftCertificateItem[];
    inventoryReservationExpiry?: any;
    lastModified?: any;
    merchandizeTotalTax?: number;
    notes?: SimpleLink;
    orderPriceAdjustments?: PriceAdjustment[];
    orderTotal?: number;
    paymentInstruments?: OrderPaymentInstrument[];
    productItems?: ProductItem[];
    productSubTotal?: number;
    productTotal?: number;
    shipments?: Shipment[];
    shippingItems?: ShippingItem[];
    shippingTotal?: number;
    shippingTotalTax?: number;
    sourceCode?: string;
    taxTotal?: number;
    taxation?: string;
} & {
    [key: string]: any;
}