Object that represents rule for wallet recurring transactions.
Name | Type | Description | Notes |
---|---|---|---|
ruleType | RuleTypeEnum | The rule type. Possible values are `interval` or `threshold`. | |
interval | IntervalEnum | The interval used for recurring top-up. It represents the frequency at which automatic top-up occurs. The interval can be one of the following values: `weekly`, `monthly`, `quarterly` or `yearly`. Required only when rule type is `interval`. | [optional] |
thresholdCredits | String | The threshold for recurring top-ups is the value at which an automatic top-up is triggered. For example, if this threshold is set at 10 credits, an automatic top-up will occur whenever the wallet balance falls to or below 10 credits. Required only when rule type is set to `threshold`. | [optional] |
Name | Value |
---|---|
INTERVAL | "interval" |
THRESHOLD | "threshold" |
Name | Value |
---|---|
WEEKLY | "weekly" |
MONTHLY | "monthly" |
QUARTERLY | "quarterly" |
YEARLY | "yearly" |