This commit is contained in:
2026-05-17 11:08:53 +03:30
parent 9ec64fc179
commit 6aaa648128
7 changed files with 82 additions and 28 deletions
@@ -10,7 +10,8 @@ class PaymentResultImpl @Inject constructor(
) : PaymentResult {
override fun post(paymentResultEntity: PaymentResultEntity?): String {
return "window.WebV.onPaymentResult(${gson.toJson(paymentResultEntity)});"
return "window.WebV.onPaymentResult();"
// return "window.WebV.onPaymentResult(${gson.toJson(paymentResultEntity)});"
}
}
@@ -3,5 +3,4 @@ package com.example.core.model
enum class PaymentResultStatus {
OK,
ERROR
}
}