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!
- # back reference to order
- : Order!
- # Element type
- : PriceElementType!
- # Element title
- : String
- # detailed information about the element (e.g. gift certificate's code, pickup
- # point ID)
- # @see PriceElementType
- : String
- # always net price for the element
- : Price!
- # tax rate for the element
- : Percentage
- # sum per row (incl. tax)
- : Price!
- # identifier that refers to the definition of shipping, payment, discounts, etc.
- # It may be empty if the element was entered manually
- : ID
- }