ExpensesProductTax

Structure

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

JSON representation

{
	"quantity": 1,
	"product": {
		"id": 782,
		"code":"TAX10",
		"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
}