FeeInput
No description
input FeeInput {
id: Int
type: FeeType!
price: OrderPriceInput
}
Fields
id ● Int
id of the fee
should be one of the existing fees
type ● FeeType!
Valid type of the fee
price ● OrderPriceInput
Price of the fee, excluding tax. If not provided, the fee will be calculated from context.
Example
{
"type": "DELIVERY",
"price": {
"priceExcludingTax": 80,
"taxAmount": 20
}
}