commit a961cdbb00cbf70b1fa112d6636ba820696b79f5 parent 6a6d05514267cd04fdd10bc1414a327f7aa273e8 Author: Florian Dold <florian.dold@gmail.com> Date: Tue, 19 May 2020 19:54:28 +0530 facades docs Diffstat:
| M | libeufin/api-nexus.rst | | | 24 | ++++++++++++++++++++++++ |
1 file changed, 24 insertions(+), 0 deletions(-)
diff --git 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? + }