taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 8ae2e5b610aab1a97cd695212bcd1083cb5635a5
parent d8a5bb40882aaa067a5caf49a8428374349d530b
Author: Marcello Stanisci <ms@taler.net>
Date:   Tue, 12 May 2020 19:15:26 +0200

make type clickable

Diffstat:
Mlibeufin/api-nexus.rst | 25+++++++++++++------------
1 file changed, 13 insertions(+), 12 deletions(-)

diff --git 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. }