diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-07-24 16:59:57 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-07-24 16:59:57 +0530 |
commit | 8f64b144f12ba445eae4238281c4ca763beba526 (patch) | |
tree | ed40f766433e85963fde5792a17dc459db2332c3 /core/api-merchant.rst | |
parent | 562f52ac450515aa209500aaf28968be466e787f (diff) | |
download | docs-8f64b144f12ba445eae4238281c4ca763beba526.tar.gz docs-8f64b144f12ba445eae4238281c4ca763beba526.tar.bz2 docs-8f64b144f12ba445eae4238281c4ca763beba526.zip |
update taler:// URI spec
Diffstat (limited to 'core/api-merchant.rst')
-rw-r--r-- | core/api-merchant.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/api-merchant.rst b/core/api-merchant.rst index 26b009e..4adf987 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; |