I use semi integration ios remote pay.
I call refund payment after closeout.
let refundRequest = RefundPaymentRequest(orderId: orderId, paymentId: paymentId, fullRefund: true)
self.cloverConnector?.refundPayment(refundRequest)
orderId: "8N1XH21J4PC2J"
paymentId: "ZTZY38TFM3ADY"
But onRefundPaymentResponse was not entered. (other functions is work well: payment, void, closeout), I don't know why refund is not get reponse, is not hit to the response function after I call refund request.
public override func onRefundPaymentResponse(_ refundPaymentResponse: RefundPaymentResponse)
Please let me know what's wrong?