Skip to main content
Object

Fields

name
required
The name of the itemized fee or allocation.
type
required
The type of fee or allocation, e.g.. Interchange, Network fee, Processor fee, or Partner fee
rateUnitAmount
required
The fixed amount per transaction used in the rate to calculate the total fee amount. e.g., $0.10 per transaction.
rateMultiplier
required
The variable rate, expressed as a decimal, used to calculate the total fee amount. e.g., 3.50% would be expressed as 0.035
calculatedAmount
required
The total amount of the fee, calculated as [(billableEventAmount * rateMultiplier) + rateUnitAmount]. e.g., 100.000.035+100.00 * 0.035 + 0.10 = $3.60
currency
required
The currency of the fee amount.
billableEventAmount
The amount tied to the billable event on which the fee is applied.
{
  "name": "xyz789",
  "type": "SETTLEMENT",
  "rateUnitAmount": Decimal,
  "rateMultiplier": Decimal,
  "calculatedAmount": Decimal,
  "currency": "xyz789",
  "billableEventAmount": Decimal
}