commit f5e8f08a1e395d12d92eb1ea7e67cd63ce491bed parent 722c37a9e385d9cc9d66edbfe2a17ffb7d528c26 Author: Florian Dold <florian@dold.me> Date: Mon, 24 Apr 2023 22:17:43 +0200 add missing execution_timestamp Diffstat:
| M | core/api-merchant.rst | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git 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; }