Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 1.26 KB

File metadata and controls

14 lines (10 loc) · 1.26 KB

Voucherify.Model.RedeemableVoucherGift

Object representing gift parameters. Child attributes are present only if type is GIFT_VOUCHER. Defaults to null.

Properties

Name Type Description Notes
Amount int? Total gift card income over the lifetime of the card. The value is multiplied by 100 to represent 2 decimal places. For example `10000 cents` for `$100.00`. [optional]
SubtractedAmount int? Total amount of subtracted credits over the gift card lifetime. The value is multiplied by 100 to represent 2 decimal places. For example `10000 cents` for `$100.00`. [optional]
Balance int? Available funds. The value is multiplied by 100 to represent 2 decimal places. For example `10000 cents` for `$100.00`. `balance` = `amount` - `subtracted_amount` - `redemption.redeemed_amount`. [optional]
Effect string Defines how the credits are applied to the customer's order. [optional]

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