summaryrefslogtreecommitdiff
path: root/taler-wallet.rst
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-08-24 19:24:09 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-08-24 19:24:09 +0530
commit12d6cab7efc156f0df4a037423d6ab0e318796bf (patch)
tree628d45fdbcd98e97dc11607cf2850c5f949a346d /taler-wallet.rst
parentf9b2c3bb7a55fb79cef14eb6845901f43a254a78 (diff)
downloaddocs-12d6cab7efc156f0df4a037423d6ab0e318796bf.tar.gz
docs-12d6cab7efc156f0df4a037423d6ab0e318796bf.tar.bz2
docs-12d6cab7efc156f0df4a037423d6ab0e318796bf.zip
no more nextUrl in the wallet
Diffstat (limited to 'taler-wallet.rst')
-rw-r--r--taler-wallet.rst9
1 files changed, 3 insertions, 6 deletions
diff --git a/taler-wallet.rst b/taler-wallet.rst
index 3c6ca801..7f0f7dbb 100644
--- a/taler-wallet.rst
+++ b/taler-wallet.rst
@@ -781,9 +781,8 @@ Prepare Pay
// Amount that will be subtracted from the wallet balance
amountEffective: Amount;
- // Redirect URL for the fulfillment page,
- // only given if paid==true.
- nextUrl?: string;
+ // Verbatim contract terms as generated by the merchant.
+ contractTerms: ContractTerms;
}
@@ -806,9 +805,7 @@ Confirm Payment
interface ConfirmPayResultDone {
type: "done";
- // Fulfillment URL augmented with order ID
- // or a special taler://fulfillment-success URL
- nextUrl: string;
+ contractTerms: ContractTerms;
}
.. ts:def:: ConfirmPayResultPending