AutoReloadConfiguration

data class AutoReloadConfiguration(val enabled: Boolean, val paymentMethodId: String?, val reloadAmount: Int?, val reloadThreshold: Int?)

Configuration for auto reload of a dev.ansa.kmp.customer.Customer's balance.

Auto reload will automatically charge the specified payment method and add the configured amount to the customer's balance whenever the balance drops below a provided threshold.

Parameters

enabled

If auto reload should be enabled or not.

paymentMethodId

The id of the payment method to be charged.

reloadAmount

How much to reload when the customer balance goes below the auto reload threshold. Amount is in the smallest currency denomination (e.g. cents for USD).

reloadThreshold

et the auto reload trigger threshold. If the customer's balance goes below this amount, an auto reload transaction will happen to top up the customer's wallet. Amount is in the smallest currency denomination (e.g. cents for USD).

Constructors

Link copied to clipboard
constructor(enabled: Boolean, paymentMethodId: String?, reloadAmount: Int?, reloadThreshold: Int?)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard