taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 43fed17a147335b8d2b65f874535fcd11498c2ae
parent e80df0caed7fe98be0888e7d94ae31559de79f84
Author: Antoine A <>
Date:   Wed, 22 Nov 2023 14:14:36 +0000

Use Integer instead of number in corebank api

Diffstat:
Mcore/api-corebank.rst | 22+++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/core/api-corebank.rst b/core/api-corebank.rst @@ -511,7 +511,7 @@ Transactions // Transaction unique ID. Matches // $TRANSACTION_ID from the URI. - row_id: number; + row_id: Integer; date: Timestamp; } @@ -556,7 +556,7 @@ Transactions interface CreateTransactionResponse { // ID identifying the transaction being created - row_id: number; + row_id: Integer; } Taler Withdrawals @@ -768,7 +768,7 @@ Cashouts interface CashoutPending { // ID identifying the operation being created // and now waiting for the TAN confirmation. - cashout_id: number; + cashout_id: Integer; } @@ -901,7 +901,7 @@ Cashouts .. ts:def:: CashoutInfo interface CashoutInfo { - cashout_id: number; + cashout_id: Integer; status: "pending" | "aborted" | "confirmed"; } @@ -944,7 +944,7 @@ Cashouts .. ts:def:: GlobalCashoutInfo interface GlobalCashoutInfo { - cashout_id: number; + cashout_id: Integer; username: string; status: "pending" | "aborted" | "confirmed"; } @@ -1012,7 +1012,7 @@ Monitor // How many payments were made to a Taler exchange by another // bank account. - talerInCount: number; + talerInCount: Integer; // Overall volume that has been paid to a Taler // exchange by another bank account. @@ -1020,7 +1020,7 @@ Monitor // How many payments were made by a Taler exchange to another // bank account. - talerOutCount: number; + talerOutCount: Integer; // Overall volume that has been paid by a Taler // exchange to another bank account. @@ -1036,7 +1036,7 @@ Monitor // How many cashin operations were confirmed by a // wallet owner. Note: wallet owners // are NOT required to be customers of the libeufin-bank. - cashinCount: number; + cashinCount: Integer; // Overall regional currency that has been paid by the regional admin account // to regional bank accounts to fulfill all the confirmed cashin operations. @@ -1047,7 +1047,7 @@ Monitor cashinFiatVolume: Amount; // How many cashout operations were confirmed. - cashoutCount: number; + cashoutCount: Integer; // Overall regional currency that has been paid to the regional admin account // by fiat bank accounts to fulfill all the confirmed cashout operations. @@ -1059,7 +1059,7 @@ Monitor // How many payments were made to a Taler exchange by another // bank account. - talerInCount: number; + talerInCount: Integer; // Overall volume that has been paid to a Taler // exchange by another bank account. @@ -1067,7 +1067,7 @@ Monitor // How many payments were made by a Taler exchange to another // bank account. - talerOutCount: number; + talerOutCount: Integer; // Overall volume that has been paid by a Taler // exchange to another bank account.