LoyaltyPoint

data class LoyaltyPoint(val id: String, val name: String, val attributes: List<LoyaltyPointAttribute>, val balance: Int)

Data class representing a loyalty point entity.

Parameters

id

Loyalty point ID.

name

Display name of the loyalty point.

attributes

Key-value attributes for the loyalty point.

balance

Current balance for this loyalty point for the profile.

Constructors

Link copied to clipboard
constructor(id: String, name: String, attributes: List<LoyaltyPointAttribute>, balance: Int)

Properties

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