Objects

CartSummaryType

Type containing cart summary information

Type containing cart summary information

type CartSummaryType {
  total: PriceType
  subTotal: PriceType
  vats: [VatGroupType]
  fees: CartFeesType
  balance: BalanceType
  fixedAmountDiscountIncVat: Decimal!
  fixedAmountDiscountExVat: Decimal!
  shipping: ShippingOptionType
  payment: PaymentOptionType
}

Fields

total ● PriceType object

Cart total

subTotal ● PriceType object

Cart sub-total

vats ● [VatGroupType] list object

Cart VAT information

fees ● CartFeesType object

Cart fee information

balance ● BalanceType object

Account balance information

fixedAmountDiscountIncVat ● Decimal! non-null scalar required

Cart fixed discount amount incl. VAT

fixedAmountDiscountExVat ● Decimal! non-null scalar required

Cart fixed discount amount excl. VAT

shipping ● ShippingOptionType object

Cart shipping option information

payment ● PaymentOptionType object

Cart payment option information

Member Of

CartType object