Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 1.68 KB

LoyaltySubLedger.md

File metadata and controls

21 lines (17 loc) · 1.68 KB

LoyaltySubLedger

Ledger of Balance in Loyalty Program for a Customer.

Properties

Name Type Description Notes
total float DEPRECATED Use `totalActivePoints` property instead. Total amount of currently active and available points in the customer's balance.
total_active_points float Total amount of currently active and available points in the customer's balance.
total_pending_points float Total amount of pending points, which are not active yet but will become active in the future.
total_spent_points float Total amount of points already spent by this customer.
total_expired_points float 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]
expiring_points list[LoyaltyLedgerEntry] List of all points that will expire. [optional]
active_points list[LoyaltyLedgerEntry] List of all currently active points. [optional]
pending_points list[LoyaltyLedgerEntry] List of all points pending activation. [optional]
expired_points list[LoyaltyLedgerEntry] List of expired points. [optional]
current_tier Tier [optional]

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