Loyalty Point
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.