Use isTest flag for PayU base URL
All checks were successful
build-and-deploy / build-deploy (push) Successful in 37s

This commit is contained in:
androidlover5842
2026-01-30 06:05:35 +05:30
parent 91a45d62e8
commit d1f98c8cb1
5 changed files with 37 additions and 5 deletions

View File

@@ -6,14 +6,14 @@ data class PayuSettingsUpsertRequest(
val merchantKey: String,
val salt32: String? = null,
val salt256: String? = null,
val baseUrl: String? = null,
val isTest: Boolean? = null,
val useSalt256: Boolean? = null
)
data class PayuSettingsResponse(
val propertyId: UUID,
val merchantKey: String,
val baseUrl: String,
val isTest: Boolean,
val useSalt256: Boolean,
val hasSalt32: Boolean,
val hasSalt256: Boolean