summaryrefslogtreecommitdiff
path: root/libeufin
diff options
context:
space:
mode:
Diffstat (limited to 'libeufin')
-rw-r--r--libeufin/api-nexus.rst24
1 files changed, 24 insertions, 0 deletions
diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index b0ea56c1..16f59977 100644
--- a/libeufin/api-nexus.rst
+++ b/libeufin/api-nexus.rst
@@ -402,3 +402,27 @@ They are namespaced under the ``/ebics/`` sub-resource.
in the nexus database. It will just make a request to the bank
and return the answer.
+
+The taler-wire-gateway facade
+-----------------------------
+
+The ``taler-wire-gateway`` facade has the following configuration:
+
+
+.. ts:def:: TalerWireGatewayFacadeConfig
+
+ interface TalerWireGatewayFacadeConfig {
+ // Bank account and connection that is
+ // abstracted over.
+ bankAccount: string;
+ bankConnection: string;
+
+ // Corresponds to whether we trust C52, C53 or C54 (SEPA ICT)
+ // for incoming transfers.
+ reserveTransferLevel: "statement" | "report" | "notification";
+
+ // Time between incremental requests
+ intervalIncremental: string;
+
+ // FIXME: maybe more scheduling parameters?
+ }