CartBaseItem
No description
type CartBaseItem implements ICartBaseItem {
id: Int!
notes: String!
price: Float!
priceNet: Float!
totalPrice: Float!
totalPriceNet: Float!
sum: Float!
sumNet: Float!
totalSum: Float!
totalSumNet: Float!
quantity: Int!
bundleId: Int
productId: Int
taxCode: Taxcode!
expectedDeliveryDate: DateTime
deliveryDeadline: DateTime
discount: Float!
discountPercentage: Float!
surcharges: [CartItemSurcharge!]!
product: Product!
}
Fields
CartBaseItem.id ● Int! non-null scalar
Id of the cart item, this id can be used for update or delete mutation for this cart item.
CartBaseItem.notes ● String! non-null scalar
User notes on cart item level
CartBaseItem.price ● Float! non-null scalar
The gross price per UOM of this cart item, no item specific discounts are applied to this price.
CartBaseItem.priceNet ● Float! non-null scalar
The net price per UOM of this cart item, no item specific discounts are applied to this price.
CartBaseItem.totalPrice ● Float! non-null scalar
The total gross price for this cart item, including item specific discounts.
CartBaseItem.totalPriceNet ● Float! non-null scalar
The total net price for this cart item, including item specific discounts.
CartBaseItem.sum ● Float! non-null scalar
The gross sum of the main cart price and the prices of its child items per UOM. No item specific discounts are applied to this price.
CartBaseItem.sumNet ● Float! non-null scalar
The net sum of the main cart price and the prices of its child items per UOM. No item specific discounts are applied to this price.
CartBaseItem.totalSum ● Float! non-null scalar
The total gross sum of the main cart price and the prices of its child items. Including item specific discounts.
CartBaseItem.totalSumNet ● Float! non-null scalar
The total net sum of the main cart price and the prices of its child items. Including item specific discounts.
CartBaseItem.quantity ● Int! non-null scalar
The quantity for this cart item
CartBaseItem.bundleId ● Int scalar
The cart item's bundleId if applicable
CartBaseItem.productId ● Int scalar
The cart item's productId if applicable
CartBaseItem.taxCode ● Taxcode! non-null enum
The tax code for this cart item.
CartBaseItem.expectedDeliveryDate ● DateTime scalar
The expected delivery date for this cart item.
CartBaseItem.deliveryDeadline ● DateTime scalar
CartBaseItem.discount ● Float! non-null scalar
The discount applied to this cart item
CartBaseItem.discountPercentage ● Float! non-null scalar
The discount percentage applied to this cart item
CartBaseItem.surcharges ● [CartItemSurcharge!]! non-null object
The surcharges applied to this cart item
CartBaseItem.product ● Product! non-null object
Interfaces
ICartBaseItem interface
Member Of
Cart object ● CartMainItem object ● ICart interface