taler-docs

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

commit 9f8638a0799548529c7e8003d1891b1eedf13d3d
parent 61279319a7813d8da388760bf1d64e0e9401fd32
Author: Marcello Stanisci <ms@taler.net>
Date:   Mon, 11 May 2020 01:03:03 +0200

Gather data for a fresh bank transport.

Diffstat:
Mlibeufin/api-nexus.rst | 10+++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

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