diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-08-07 00:17:21 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-08-07 00:17:21 +0530 |
commit | 5a40f637fed3ed087e7d723bd04ed766e3b651e7 (patch) | |
tree | 4faf1577f4309c43667139c4f2d44e94ae8c8692 /core/api-merchant.rst | |
parent | 8302beb9ef13811287e16aa27109821b6f660ce0 (diff) | |
download | docs-5a40f637fed3ed087e7d723bd04ed766e3b651e7.tar.gz docs-5a40f637fed3ed087e7d723bd04ed766e3b651e7.tar.bz2 docs-5a40f637fed3ed087e7d723bd04ed766e3b651e7.zip |
mechant docs
Diffstat (limited to 'core/api-merchant.rst')
-rw-r--r-- | core/api-merchant.rst | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/core/api-merchant.rst b/core/api-merchant.rst index 6e6629c0..0ef3f72b 100644 --- a/core/api-merchant.rst +++ b/core/api-merchant.rst @@ -1294,6 +1294,10 @@ Payment processing // The refund details for this order. One entry per // refunded coin; empty array if there are no refunds. refund_details: RefundDetails[]; + + // Status URL, can be used as a redirect target for the browser + // to show the order QR code / trigger the wallet. + order_status_url: string; } .. ts:def:: CheckPaymentUnpaidResponse @@ -1308,6 +1312,10 @@ Payment processing // Only given if the same product was purchased before in the same session. already_paid_order_id?: string; + // Status URL, can be used as a redirect target for the browser + // to show the order QR code / trigger the wallet. + order_status_url: string; + // We do we NOT return the contract terms here because they may not // exist in case the wallet did not yet claim them. } @@ -2094,9 +2102,12 @@ Giving Customer Tips // Unique tip identifier for the tip that was created. tip_id: HashCode; + // taler://tip URI for the tip + taler_tip_uri: string; + // URL that will directly trigger processing // the tip when the browser is redirected to it - tip_redirect_url: string; + tip_status_url: string; // when does the tip expire tip_expiration: Timestamp; |