commit 562f52ac450515aa209500aaf28968be466e787f
parent 53f05129075ed4d7e783ca79a54a57d6451b499b
Author: Florian Dold <florian.dold@gmail.com>
Date: Fri, 24 Jul 2020 12:45:28 +0530
more string tags
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
@@ -1366,7 +1366,7 @@ Payment processing
interface StatusPaid {
// Has the payment for this order (ever) been completed?
- paid: true;
+ status: "paid";
// Was the payment refunded (even partially, via refund or abort)?
refunded: boolean;
@@ -1386,7 +1386,7 @@ Payment processing
interface StatusUnpaid {
// Has the payment for this order (ever) been completed?
- paid: false;
+ status: "unpaid";
// URI that the wallet must process to complete the payment.
taler_pay_uri: string;