commit 182b22d39d685c00012367bf74e767f3b74e61a0 parent f4dbe12c3d8f659890a93e566a46738911157c14 Author: MS <ms@taler.net> Date: Tue, 25 Aug 2020 19:17:05 +0200 avoid signed amounts Diffstat:
| M | core/api-bank-access.rst | | | 8 | +++++--- |
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git 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. }