summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libeufin/api-nexus.rst10
1 files changed, 7 insertions, 3 deletions
diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index 865b5faa..2d36fac6 100644
--- a/libeufin/api-nexus.rst
+++ b/libeufin/api-nexus.rst
@@ -256,14 +256,18 @@ to the real bank.
interface BankTransport {
+ // Type of the transport (ebics, fints, native, ..)
+ type: string;
+
// Mnemonic identifier for the transport bein created.
name: string;
// Restore a previous transport.
backup?: TransportBackup;
-
- // Type of the transport (ebics, fints, native, ..)
- type: string;
+
+ // Data to create a fresh bank transport without
+ // restoring any backup.
+ new?: TransportNew;
}