Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Latest commit

 

History

History
36 lines (20 loc) · 1.38 KB

WalletCreateInputWalletRecurringTransactionRulesInner.md

File metadata and controls

36 lines (20 loc) · 1.38 KB

WalletCreateInputWalletRecurringTransactionRulesInner

Object that represents rule for wallet recurring transactions.

Properties

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]

Enum: RuleTypeEnum

Name Value
INTERVAL "interval"
THRESHOLD "threshold"

Enum: IntervalEnum

Name Value
WEEKLY "weekly"
MONTHLY "monthly"
QUARTERLY "quarterly"
YEARLY "yearly"