summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-07-28 23:32:42 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-07-28 23:32:42 +0530
commitb25e82b40b71ab5e8d73f552e13340d27d111884 (patch)
tree5477b50e2155050ff154efa919491b35d54ce6aa
parentea0b5886c2034419286f234f05eab40154e9fb84 (diff)
downloaddocs-b25e82b40b71ab5e8d73f552e13340d27d111884.tar.gz
docs-b25e82b40b71ab5e8d73f552e13340d27d111884.tar.bz2
docs-b25e82b40b71ab5e8d73f552e13340d27d111884.zip
api docs
-rw-r--r--taler-wallet.rst10
1 files changed, 6 insertions, 4 deletions
diff --git a/taler-wallet.rst b/taler-wallet.rst
index 82c21821..ecab021e 100644
--- 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