summaryrefslogtreecommitdiff
path: root/taler-wallet.rst
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-07-20 17:11:14 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-07-20 17:11:14 +0530
commit692c8f194e37d04a4a957229ffe7259eb11b3771 (patch)
tree54c65632e34542e02bc90888b15058f757be7b0f /taler-wallet.rst
parent533c1f98f15b73a639a952b7df3f82e4e2d39d32 (diff)
downloaddocs-692c8f194e37d04a4a957229ffe7259eb11b3771.tar.gz
docs-692c8f194e37d04a4a957229ffe7259eb11b3771.tar.bz2
docs-692c8f194e37d04a4a957229ffe7259eb11b3771.zip
fix broken indentation
Diffstat (limited to 'taler-wallet.rst')
-rw-r--r--taler-wallet.rst28
1 files changed, 28 insertions, 0 deletions
diff --git a/taler-wallet.rst b/taler-wallet.rst
index 00d7fd78..6dd37749 100644
--- a/taler-wallet.rst
+++ b/taler-wallet.rst
@@ -556,6 +556,34 @@ Withdrawal: Get Manual Withdrawal Info
paytoUris: string[];
}
+Withdrawal: Get Withdrawal Info For Bank-integrated Withdrawal
+--------------------------------------------------------------
+
+:Name: ``"getWithdrawalDetailsForUri"``
+:Description:
+ Get information about fees and exchange for a bank-integrated withdrawal
+ from a taler://withdraw URI.
+:Request:
+ .. ts:def:: GetManualWithdrawalDetailsRequest
+
+ interface ExchangeAddRequest {
+ talerWithdrawUri: string;
+ // Selected exchange, if an exchange has been selected already
+ // by the user (or preselected by the wallet)
+ selectedExchange?: string;
+ }
+:Response:
+ .. ts:def:: WithdrawalDetailsForUri
+
+ export interface WithdrawalDetailsForUri {
+ // Did the user accept the current version of the exchange's
+ // terms of service?
+ tosAccepted: boolean;
+
+ // Exchange suggested by the bank
+ bankSuggestedExchange?: string;
+ }
+
Withdrawal: Accept Manual Withdrawal
------------------------------------