Response with calculated tax rate for different fees, i.e. shipping fee, payment fee, etc.
| name | data type | description |
|---|---|---|
| amountIncludingTax | number | The amount including tax |
| amountExcludingTax | number | The amount excluding tax |
| taxRate | number | The tax rate |
| fixedTaxRate | boolean | Whether the tax rate is fixed. If it is false, then the tax rate is weighted (average of total tax rate) |
Example
{
"amountIncludingTax" : 29.99,
"amountExcludingTax" : 22.49,
"taxRate" : 0.25,
"fixedTaxRate" : true
}