Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 1.39 KB

File metadata and controls

13 lines (9 loc) · 1.39 KB

Voucherify.Model.RedeemableGift

Contains current gift card balance information.

Properties

Name Type Description Notes
Balance decimal? Available funds. The value is multiplied by 100 to represent 2 decimal places. For example `10000 cents` for `$100.00`. [optional]
Credits decimal? The number of credits that the user wants to use from the gift card to fulfil the order. The value of credits cannot be higher than the current balance on the gift card. If the user gives more points than he has on the gift card, the application will return an error code in response. The value is multiplied by 100 to represent 2 decimal places. For example `10000 cents` for `$100.00`. [optional]
LockedCredits decimal? The number of credits that are locked under a validation session. This is returned if the qualification request includes `session.type: LOCK` parameter in the body. The value is multiplied by 100 to represent 2 decimal places. For example `10000` for `$100.00`. Returns `0` if there aren't any active validation sessions for the gift card. [optional]

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