Total
data class Total(val currency: String?, val shipping: Double, val tax: Double, val transactionTotal: Double)
Represents the total cost details for a transaction or cart.
Parameters
currency
The currency code for the transaction's monetary values (e.g., "USD"), or null if not specified.
shipping
The shipping cost for the transaction.
tax
The tax amount applied to the transaction.
transaction Total
The total cost of the transaction, including items, tax, and shipping.