summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/api-bank-access.rst8
1 files changed, 5 insertions, 3 deletions
diff --git a/core/api-bank-access.rst b/core/api-bank-access.rst
index a80c9da0..215c5163 100644
--- a/core/api-bank-access.rst
+++ b/core/api-bank-access.rst
@@ -45,9 +45,11 @@ name and account password, at least in the GNU Taler demo bank implementation.
.. ts:def:: BankAccountBalanceResponse
interface BankAccountBalanceResponse {
- // Amount with plus or minus sign, representing the current
- // available account balance.
- balance: SignedAmount;
+ // Current amount; can be debit.
+ balance: Amount;
+
+ // Indicates whether the amount refers to a debit or credit value.
+ credit_debit_indicator: string; // "credit" and "debit" values allowed.
}