ProformaProductTax

Structure

FieldTypeRequiredDescription
quantityIntegertrueNumber of elements of this type of Product.
productProducttrueProduct related to the ProformaProductDiscount.
nameStringtrueName of this discount.
priceBigDecimaltruePrice in the related Currency.
currencyCurrencytrueCurrency related to this proformaProductDiscount
amountBigDecimalfalseFixed amount of discount 
percentageBigDecimalfalsePercent of discount

JSON representation

{
	"quantity": 1,
	"product": {
		"id": 782,
		"name": "Tax 10%",
		"productType": {
			"id": 8,
			"code": "TAX",
			"name": "Tax"
		}
	},
	"name": "Tax 10%",
	"price": 21.090909,
	"currency": {
		"id": 1,
		"code": "EUR",
		"name": "Euro"
	},
	"amount": null,
	"percentage": 10
}