taler-docs

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

commit a7fed4b35dd3b2a19de9f13827cfdffa5842a761
parent 832bfa4d23fc670e8ec75c113a35c78d910676d4
Author: MS <ms@taler.net>
Date:   Thu, 29 Oct 2020 17:34:11 +0100

add missing type

Diffstat:
Mlibeufin/api-nexus.rst | 14++++++++++++++
1 file changed, 14 insertions(+), 0 deletions(-)

diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst @@ -369,6 +369,20 @@ to the real bank. List available bank connections. + **Response** + + .. ts:def:: BankConnection + + interface BankConnection { + + // connection type. For example "ebics". + type: string; + + // connection name as given by the user at + // the moment of creation. + name: string; + } + .. http:get:: {nexusBase}/bank-connections/{connId}