WalletCheckoutLineItem

data class WalletCheckoutLineItem(val description: String?, val productCode: String?, val quantity: Int?, val unitAmount: Long?, val totalAmount: Long?)

Data class representing the item being purchased.

Constructors

Link copied to clipboard
constructor(description: String?, productCode: String?, quantity: Int?, unitAmount: Long?, totalAmount: Long?)

Properties

Link copied to clipboard

Description of the item.

Link copied to clipboard

Merchant-defined product code.

Link copied to clipboard

Quantity of the item.

Link copied to clipboard

Total price for this line item (quantity multiplied by unitAmount), in minor units.

Link copied to clipboard

Price of a single unit, in minor units.