summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <ms@taler.net>2020-05-12 19:15:26 +0200
committerMarcello Stanisci <ms@taler.net>2020-05-12 19:15:26 +0200
commit8ae2e5b610aab1a97cd695212bcd1083cb5635a5 (patch)
treee9fe96e36d2ae1d148735e4d627ee4b1a6a9839a
parentd8a5bb40882aaa067a5caf49a8428374349d530b (diff)
downloaddocs-8ae2e5b610aab1a97cd695212bcd1083cb5635a5.tar.gz
docs-8ae2e5b610aab1a97cd695212bcd1083cb5635a5.tar.bz2
docs-8ae2e5b610aab1a97cd695212bcd1083cb5635a5.zip
make type clickable
-rw-r--r--libeufin/api-nexus.rst25
1 files changed, 13 insertions, 12 deletions
diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index 4acd31db..e2f97f35 100644
--- a/libeufin/api-nexus.rst
+++ b/libeufin/api-nexus.rst
@@ -279,7 +279,7 @@ to the real bank.
// Data to create a fresh bank transport without
// restoring any backup.
- new?: TransportNew;
+ newTransport?: TransportNew;
}
@@ -287,24 +287,25 @@ to the real bank.
interface TransportNew {
- // This type is strictly dependent on
- // the transport being created. For Ebics,
- // it will contain the required fields (as strings):
- // 'ebicsURL', 'userID', 'partnerID', 'hostID', and
- // the optional 'systemID'.
-
- // Other transport types, like 'local' (used for testing
- // purposes skipping any interaction with the bank service)
- // and 'fints' are all work in progress!
+ // This type is strictly dependent on
+ // the transport being created. For Ebics,
+ // it will contain the required fields (as strings):
+ // 'ebicsURL', 'userID', 'partnerID', 'hostID', and
+ // the optional 'systemID'.
+
+ // Other transport types, like 'local' (used for testing
+ // purposes skipping any interaction with the bank service)
+ // and 'fints' are all work in progress!
}
+
.. ts:def:: TransportBackup
interface TransportBackup {
- // The information needed in this type depend entirely
- // on which transport is being restored.
+ // The information needed in this type depend entirely
+ // on which transport is being restored.
}