summaryrefslogtreecommitdiff
path: root/core/api-merchant.rst
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-04-24 22:17:43 +0200
committerFlorian Dold <florian@dold.me>2023-04-24 22:17:43 +0200
commitf5e8f08a1e395d12d92eb1ea7e67cd63ce491bed (patch)
treedb630bcce7961ed74acd11cba68ed973624b1872 /core/api-merchant.rst
parent722c37a9e385d9cc9d66edbfe2a17ffb7d528c26 (diff)
downloaddocs-f5e8f08a1e395d12d92eb1ea7e67cd63ce491bed.tar.gz
docs-f5e8f08a1e395d12d92eb1ea7e67cd63ce491bed.tar.bz2
docs-f5e8f08a1e395d12d92eb1ea7e67cd63ce491bed.zip
add missing execution_timestamp
Diffstat (limited to 'core/api-merchant.rst')
-rw-r--r--core/api-merchant.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
index 279edf5e..ef325c95 100644
--- a/core/api-merchant.rst
+++ b/core/api-merchant.rst
@@ -719,6 +719,10 @@ the contract. Refunds must be approved by the merchant's business logic.
// Amount that was refunded, including refund fee charged by the exchange
// to the customer.
refund_amount: Amount;
+
+ // Timestamp when the merchant approved the refund.
+ // Useful for grouping refunds.
+ execution_time: Timestamp;
}
.. ts:def:: MerchantCoinRefundSuccessStatus
@@ -753,6 +757,10 @@ the contract. Refunds must be approved by the merchant's business logic.
// Amount that was refunded, including refund fee charged by the exchange
// to the customer.
refund_amount: Amount;
+
+ // Timestamp when the merchant approved the refund.
+ // Useful for grouping refunds.
+ execution_time: Timestamp;
}