OrderNPayTax
Model
Required
MaxLength(32)
name :
string
The name of the tax this value relates to
Required
decimal(13, 2)
amount :
number (decimal)
The amount of tax calculated
Required
decimal(13, 2)
taxRate :
number (decimal)
The rate of tax applied as a percentage, eg 10 = 10%
Required
isAddOnTax :
bool
Is this an addon tax (TRUE) or an inclusive tax (FALSE)
Example
{
"name": "string value",
"amount": 1.23,
"taxRate": 1.23,
"isAddOnTax": true
}