Objects

PriceType

Type containing price information

Type containing price information

type PriceType {
  sellingPriceIncVat: Decimal!
  sellingPriceExVat: Decimal!
  regularPriceIncVat: Decimal!
  regularPriceExVat: Decimal!
  discountIncVat: Decimal!
  discountExVat: Decimal!
  discountPercentage: Int!
  vat: Decimal!
  isDiscounted: Boolean!
  sellingPriceIncVatFormatted: String
  sellingPriceExVatFormatted: String
  regularPriceIncVatFormatted: String
  regularPriceExVatFormatted: String
  discountIncVatFormatted: String
  discountExVatFormatted: String
  vatFormatted: String
  currency: CurrencyType
}

Fields

sellingPriceIncVat ● Decimal! non-null scalar required

The selling price including VAT

sellingPriceExVat ● Decimal! non-null scalar required

The selling price excluding VAT

regularPriceIncVat ● Decimal! non-null scalar required

The regular price including VAT

regularPriceExVat ● Decimal! non-null scalar required

The regular price excluding VAT

discountIncVat ● Decimal! non-null scalar required

Discount amount including VAT

discountExVat ● Decimal! non-null scalar required

Discount amount excluding VAT

discountPercentage ● Int! non-null scalar required

Discount percentage

vat ● Decimal! non-null scalar required

VAT amount

isDiscounted ● Boolean! non-null scalar required

Whether the price is discounted or not

sellingPriceIncVatFormatted ● String scalar

Selling price (incl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'

sellingPriceExVatFormatted ● String scalar

Selling price (excl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'

regularPriceIncVatFormatted ● String scalar

Regular price (incl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'

regularPriceExVatFormatted ● String scalar

Regular price (excl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'

discountIncVatFormatted ● String scalar

Discount (incl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'

discountExVatFormatted ● String scalar

Discount (excl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'

vatFormatted ● String scalar

VAT amount, formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'

currency ● CurrencyType object

Currency information

Member Of

CampaignPriceType object ● CartItemType object ● CartSummaryType object ● OrderType object ● ProductType object ● RelatedProductType object