summaryrefslogtreecommitdiff
path: root/libeufin
diff options
context:
space:
mode:
authorMS <ms@taler.net>2021-01-26 18:26:39 +0100
committerMS <ms@taler.net>2021-01-26 18:26:39 +0100
commitc95295ee6e52074a95adad83bbba785b2158a55d (patch)
tree94e56a9a96ae4490b605f6a269f9780e478eb8c4 /libeufin
parent20d7f561d57b5ed976bb472e09396b6901de1100 (diff)
downloaddocs-c95295ee6e52074a95adad83bbba785b2158a55d.tar.gz
docs-c95295ee6e52074a95adad83bbba785b2158a55d.tar.bz2
docs-c95295ee6e52074a95adad83bbba785b2158a55d.zip
adapt specs to code
Diffstat (limited to 'libeufin')
-rw-r--r--libeufin/api-nexus.rst18
1 files changed, 7 insertions, 11 deletions
diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index 8658f7a1..d4d02a41 100644
--- 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;
}