Web Transaction
data class WebTransaction(val products: List<ProductItem?>?, val total: Total?, val transactionID: String?)
Represents a web-based transaction containing products and cost details.
Parameters
products
A list of ProductItem objects representing the items in the transaction, or null if no items are present.
total
The Total object containing the transaction's pricing summary, or null if not available.
transaction ID
The unique identifier for the transaction, or null if not specified.