TaxRateFeeResponse Data Type

Response with calculated tax rate for different fees, i.e. shipping fee, payment fee, etc.

Properties
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
}