taler-docs

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

commit c95295ee6e52074a95adad83bbba785b2158a55d
parent 20d7f561d57b5ed976bb472e09396b6901de1100
Author: MS <ms@taler.net>
Date:   Tue, 26 Jan 2021 18:26:39 +0100

adapt specs to code

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

diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst @@ -654,17 +654,13 @@ to the real bank. .. ts:def:: BankConnectionInfo interface BankConnectionInfo { - bankConnectionId: string; - - bankConnectionType: string; - - // Is this bank connection ready, or - // are we waiting for the bank to activate - // the connection? - ready: boolean; - - // Did the user review the bank's keys? - bankKeysReviewed: boolean; + type: string; + owner: string; + // if true, this connection can be used to communicate + // with the bank. + ready: boolean; + // Depends on the type. + details: any; }