WebTransaction

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.

transactionID

The unique identifier for the transaction, or null if not specified.

Constructors

Link copied to clipboard
constructor(products: List<ProductItem?>?, total: Total?, transactionID: String?)

Properties

Link copied to clipboard
@SerializedName(value = "item")
val products: List<ProductItem?>?
Link copied to clipboard
@SerializedName(value = "total")
val total: Total?
Link copied to clipboard
@SerializedName(value = "transactionID")
val transactionID: String?