Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 1.72 KB

LoyaltySubLedger.md

File metadata and controls

20 lines (17 loc) · 1.72 KB

TalonOne.Model.LoyaltySubLedger

Ledger of Balance in Loyalty Program for a Customer.

Properties

Name Type Description Notes
Total decimal DEPRECATED Use `totalActivePoints` property instead. Total amount of currently active and available points in the customer's balance.
TotalActivePoints decimal Total amount of currently active and available points in the customer's balance.
TotalPendingPoints decimal Total amount of pending points, which are not active yet but will become active in the future.
TotalSpentPoints decimal Total amount of points already spent by this customer.
TotalExpiredPoints decimal Total amount of points, that expired without ever being spent.
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]

[Back to Model list] [Back to API list] [Back to README]