PaymentAmounts
data class PaymentAmounts(val currency: String, val amount: BigDecimal, val tipAmount: BigDecimal? = null, val cashbackAmount: BigDecimal? = null, val paidAmount: BigDecimal? = null)
Utility class for transaction amounts specification
Constructors
Link copied to clipboard
constructor(currency: String, amount: BigDecimal, tipAmount: BigDecimal? = null, cashbackAmount: BigDecimal? = null, paidAmount: BigDecimal? = null)