OrderRowInput
No description
input OrderRowInput {
productId: String!
quantity: Int!
unitPrice: OrderPriceInput
totalPrice: OrderPriceInput @deprecated
}
Fields
productId ● String!
quantity ● Int!
unitPrice ● OrderPriceInput
Unit price of the order row (price per single quantity). Leave empty to use contextual pricing.
Show deprecated
Example
{
"productId": "P12345",
"unitPrice": {
"priceExcludingTax": 80,
"taxAmount": 20
}
}