Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 1.45 KB

File metadata and controls

17 lines (13 loc) · 1.45 KB

Voucherify.Model.LoyaltiesMembersCreateResponseBodyLoyaltyCard

Object representing loyalty card parameters. Child attributes are present only if type is LOYALTY_CARD. Defaults to null.

Properties

Name Type Description Notes
Points int? Total number of points added to the loyalty card over its lifespan. [optional]
Balance int? Points available for reward redemption. This is calculated as follows: `balance` = `points` - `expired_points` - `subtracted_points` - `redemption.redeemed_points`. [optional]
NextExpirationDate DateTime? The next closest date when the next set of points are due to expire. [optional]
NextExpirationPoints int? The amount of points that are set to expire next. [optional]
PendingPoints int? Shows the number of pending points that will be added to the loyalty card when they are activated automatically or manually. [optional]
ExpiredPoints int? Shows the total number of expired points over the lifetime of the loyalty card. [optional]
SubtractedPoints int? Shows the total number of subtracted points over the lifetime of the loyalty card. [optional]

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