summaryrefslogtreecommitdiff
path: root/libeufin/api-nexus.rst
diff options
context:
space:
mode:
authorMarcello Stanisci <ms@taler.net>2020-05-11 01:03:03 +0200
committerMarcello Stanisci <ms@taler.net>2020-05-11 01:03:03 +0200
commit9f8638a0799548529c7e8003d1891b1eedf13d3d (patch)
treee8ce72062f21ab30b90b8de9ba2370d2897edea7 /libeufin/api-nexus.rst
parent61279319a7813d8da388760bf1d64e0e9401fd32 (diff)
downloaddocs-9f8638a0799548529c7e8003d1891b1eedf13d3d.tar.gz
docs-9f8638a0799548529c7e8003d1891b1eedf13d3d.tar.bz2
docs-9f8638a0799548529c7e8003d1891b1eedf13d3d.zip
Gather data for a fresh bank transport.
Diffstat (limited to 'libeufin/api-nexus.rst')
-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;
}