ProductInfo

data class ProductInfo(val productID: String?, val productName: String?, val productVariant: String?)

Represents information about a product in a transaction.

Parameters

productID

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

productName

The name of the product, or null if not specified.

productVariant

The variant of the product, or null if not specified.

Constructors

Link copied to clipboard
constructor(productID: String?, productName: String?, productVariant: String?)

Properties

Link copied to clipboard
@SerializedName(value = "productID")
val productID: String?
Link copied to clipboard
@SerializedName(value = "productName")
val productName: String?
Link copied to clipboard
@SerializedName(value = "productVariant")
val productVariant: String?