summaryrefslogtreecommitdiff
path: root/core/api-bank-access.rst
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-04-18 10:09:46 +0200
committerChristian Grothoff <grothoff@gnunet.org>2023-04-18 10:09:46 +0200
commit832e1118aa86f9e51976fb339203ffd41adaebc0 (patch)
treecfba35c3e0049e4fdbd1e661ea35978f51adfba0 /core/api-bank-access.rst
parent626ec409db86f159158a616a6e28fddc12be1a7c (diff)
downloaddocs-832e1118aa86f9e51976fb339203ffd41adaebc0.tar.gz
docs-832e1118aa86f9e51976fb339203ffd41adaebc0.tar.bz2
docs-832e1118aa86f9e51976fb339203ffd41adaebc0.zip
-syntax fix
Diffstat (limited to 'core/api-bank-access.rst')
-rw-r--r--core/api-bank-access.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/api-bank-access.rst b/core/api-bank-access.rst
index 155cde77..845d2d2d 100644
--- a/core/api-bank-access.rst
+++ b/core/api-bank-access.rst
@@ -68,13 +68,15 @@ name and account password, at least in the GNU Taler demo bank implementation.
**Details**
- .. ts:def:: BankAccountBalanceResponse
+ .. ts:def:: Balance
interface Balance {
amount: Amount;
credit_debit_indicator: "credit" | "debit";
}
+ .. ts:def:: BankAccountBalanceResponse
+
interface BankAccountBalanceResponse {
// Available balance on the account.
balance: Balance;
@@ -83,7 +85,7 @@ name and account password, at least in the GNU Taler demo bank implementation.
paytoUri: string;
// Number indicating the max debit allowed for the requesting user.
- debitThreshold: String;
+ debitThreshold: string;
}