summaryrefslogtreecommitdiff
path: root/core/api-merchant.rst
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-07-24 12:45:28 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-07-24 12:45:28 +0530
commit562f52ac450515aa209500aaf28968be466e787f (patch)
tree2861e1185d1e67805536e05b376c67932258413a /core/api-merchant.rst
parent53f05129075ed4d7e783ca79a54a57d6451b499b (diff)
downloaddocs-562f52ac450515aa209500aaf28968be466e787f.tar.gz
docs-562f52ac450515aa209500aaf28968be466e787f.tar.bz2
docs-562f52ac450515aa209500aaf28968be466e787f.zip
more string tags
Diffstat (limited to 'core/api-merchant.rst')
-rw-r--r--core/api-merchant.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
index 7c5e097d..26b009e2 100644
--- 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;