PayNow

SubscriptionBillingAmountDto

Represents a billing amount breakdown for a subscription.

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
}