GitHub

MagentoCartItem

import { MagentoCartItem } from '@daffodil/cart/driver/magento'

An object for defining what the cart service requests and retrieves from a magento backend.

interface MagentoCartItem {
  __typename: MagentoCartItemTypeEnum
  id: string
  prices: { price: MagentoMoney; row_total: MagentoMoney; discounts?: MagentoDiscount[]; }
  product: MagentoCartItemProduct
  quantity: number
}