summaryrefslogtreecommitdiff
path: root/libeufin/api-nexus.rst
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-05-19 19:54:28 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-05-19 19:54:28 +0530
commita961cdbb00cbf70b1fa112d6636ba820696b79f5 (patch)
treef128342b60028a3cdd02ec3c5511960cda5947f4 /libeufin/api-nexus.rst
parent6a6d05514267cd04fdd10bc1414a327f7aa273e8 (diff)
downloaddocs-a961cdbb00cbf70b1fa112d6636ba820696b79f5.tar.gz
docs-a961cdbb00cbf70b1fa112d6636ba820696b79f5.tar.bz2
docs-a961cdbb00cbf70b1fa112d6636ba820696b79f5.zip
facades docs
Diffstat (limited to 'libeufin/api-nexus.rst')
-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?
+ }