Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.81 KB

File metadata and controls

24 lines (17 loc) · 1.81 KB

LoyaltySubLedger

Ledger of Balance in Loyalty Program for a Customer.

Properties

Name Type Description Notes
total BigDecimal DEPRECATED Use `totalActivePoints` property instead. Total amount of currently active and available points in the customer's balance.
totalActivePoints BigDecimal Total amount of currently active and available points in the customer's balance.
totalPendingPoints BigDecimal Total amount of pending points, which are not active yet but will become active in the future.
totalSpentPoints BigDecimal Total amount of points already spent by this customer.
totalExpiredPoints BigDecimal Total amount of points, that expired without ever being spent.
totalNegativePoints BigDecimal Total amount of negative points. This implies that `totalActivePoints` is `0`.
transactions List<LoyaltyLedgerEntry> List of all events that have happened such as additions, subtractions and expiries. [optional]
expiringPoints List<LoyaltyLedgerEntry> List of all points that will expire. [optional]
activePoints List<LoyaltyLedgerEntry> List of all currently active points. [optional]
pendingPoints List<LoyaltyLedgerEntry> List of all points pending activation. [optional]
expiredPoints List<LoyaltyLedgerEntry> List of expired points. [optional]
currentTier Tier [optional]