OrderPriceElement

(OBJECT)

Non-product element in order (possibly affecting a price). Order price elements represent most often a shipping or payment fee, applied discount or used gift certificates.

link GraphQL Schema definition

  • type OrderPriceElement {
  • # Internal element ID
  • id: ID!
  • # back reference to order
  • order: Order!
  • # Element type
  • type: PriceElementType!
  • # Element title
  • title: String
  • # detailed information about the element (e.g. gift certificate's code, pickup
  • # point ID)
  • # @see PriceElementType
  • value: String
  • # always net price for the element
  • price: Price!
  • # tax rate for the element
  • tax_rate: Percentage
  • }