LoyaltyPointInTransaction

data class LoyaltyPointInTransaction(val id: String, val name: String, val amount: Int)

Data class identifying the loyalty point type and amount referenced in a transaction.

Parameters

id

Loyalty point type identifier.

name

Display name of the loyalty point.

amount

Amount of loyalty points credited or debited.

Constructors

Link copied to clipboard
constructor(id: String, name: String, amount: Int)

Properties

Link copied to clipboard
val amount: Int
Link copied to clipboard
val id: String
Link copied to clipboard