PayNow

SubscriptionChangeAmountDto

Pricing breakdown for a subscription change, in the smallest units of the given currency (e.g. cents).

currencystringRequired
ISO 4217 currency code, in lowercase.
discountintegerRequired
Total discount applied, in smallest currency units.
subtotalintegerRequired
Base amount before discounts or tax, in smallest currency units.
taxintegerRequired
Tax amount, in smallest currency units.
totalintegerRequired
Amount due after discounts and tax, in smallest currency units.
Example
{
  "currency": "string",
  "discount": 0,
  "subtotal": 0,
  "tax": 0,
  "total": 0
}