summaryrefslogtreecommitdiff
path: root/core/api-merchant.rst
diff options
context:
space:
mode:
Diffstat (limited to 'core/api-merchant.rst')
-rw-r--r--core/api-merchant.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
index 26b009e2..4adf9874 100644
--- a/core/api-merchant.rst
+++ b/core/api-merchant.rst
@@ -1219,7 +1219,7 @@ Payment processing
interface CheckPaymentPaidResponse {
// did the customer pay for this contract
- status: "paid";
+ order_status: "paid";
// Was the payment refunded (even partially)
refunded: boolean;
@@ -1262,7 +1262,7 @@ Payment processing
.. ts:def:: CheckPaymentUnpaidResponse
interface CheckPaymentUnpaidResponse {
- status: "unpaid";
+ order_status: "unpaid";
// URI that the wallet must process to complete the payment.
taler_pay_uri: string;
@@ -1366,7 +1366,7 @@ Payment processing
interface StatusPaid {
// Has the payment for this order (ever) been completed?
- status: "paid";
+ order_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?
- status: "unpaid";
+ order_status: "unpaid";
// URI that the wallet must process to complete the payment.
taler_pay_uri: string;