MenuItemTax Model

Represents the amount of tax associated with a particular menu item + RemoteOrderTax

Required
remoteOrderTaxID : number (int)

Reference to a RemoteOrderTax.RemoteOrderTaxID defined in the Menu

Nullable decimal(18, 7)
inclusiveTaxPerUnit : number (decimal)

The total amount of tax that is already included in the displayed price to the consumer for a single item.

For example - If the price was $10 and this value was $0.91 then the effective tax rate would be ~10% and the consumer would've paid $10.

Nullable decimal(18, 7)
exclusiveTaxPerUnit : number (decimal)

The total amount of tax that will need to collected in addition to the displayed price for a single item.

For example - If the price was $10 and this value was $1 then the effective tax rate would be ~10% and the consumer would've paid $11.

Nullable decimal(18, 7)
taxableSalesPerUnit : number (decimal)

The base price (per unit) that Inclusive/Exclusive taxes were calculated against. This will normally match Price UNLESS operating in a jurisdiction that compounds multiple taxes in which case
it will vary for each MenuItemTax.

Example
{
  "remoteOrderTaxID": 321,
  "inclusiveTaxPerUnit": 1.23,
  "exclusiveTaxPerUnit": 1.23,
  "taxableSalesPerUnit": 1.23
}