commit b25e82b40b71ab5e8d73f552e13340d27d111884
parent ea0b5886c2034419286f234f05eab40154e9fb84
Author: Florian Dold <florian.dold@gmail.com>
Date: Tue, 28 Jul 2020 23:32:42 +0530
api docs
Diffstat:
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/taler-wallet.rst b/taler-wallet.rst
@@ -107,9 +107,11 @@ Balances are the amounts of digital cash held by the wallet.
.. ts:def:: Balance
+ // Balance for one currency.
+ // The currency can be derived from any of the
+ // "Amount" fields, as the currency is present even
+ // when the amount is zero.
interface Balance {
- currency?: string;
-
// The total Amount that is currently available to be spent
// including amounts tied up in ongoing refresh operations. These are hidden from the user.
// If the user tries to spend coins locked up this way,
@@ -591,10 +593,10 @@ Get Withdrawal Details
tosAccepted: boolean;
// Amount that will be transferred to the exchange.
- rawAmount: Amount;
+ amountRaw: Amount;
// Amount that will be added to the user's wallet balance.
- effectiveAmount: Amount;
+ amountEffective: Amount;
}
Accept Bank-integrated Withdrawal