NTP-58492 | Added device fingerprint in validate VPA request (#15936)

This commit is contained in:
Ujjwal Kumar
2025-04-27 12:53:11 +05:30
committed by GitHub
parent 0a5d77cd8c
commit faf298b636
3 changed files with 6 additions and 0 deletions

View File

@@ -16,4 +16,5 @@ data class ValidateVpaRequest(
@SerializedName("modeOfPayment") val modeOfPayment: String? = null,
@SerializedName("merchantCustomerId") val merchantCustomerId: String? = null,
@SerializedName("provider") val pspType: PspType? = null,
@SerializedName("deviceFingerPrint") val deviceFingerPrint: String? = null,
)

View File

@@ -120,6 +120,8 @@ constructor(
pspType = selectedPsp,
merchantCustomerId =
customerOnboardingEntity?.merchantCustomerId,
deviceFingerPrint =
customerOnboardingEntity?.deviceFingerPrint,
),
metricInfo = getMetricInfo(screenName = screenName),
)
@@ -140,6 +142,8 @@ constructor(
pspType = selectedPsp,
merchantCustomerId =
customerOnboardingEntity?.merchantCustomerId,
deviceFingerPrint =
customerOnboardingEntity?.deviceFingerPrint,
),
metricInfo = getMetricInfo(screenName = screenName),
)

View File

@@ -14,4 +14,5 @@ data class PayToContactRequest(
@SerializedName("payeeMobileNumber") val payeeMobileNumber: String,
@SerializedName("merchantCustomerId") val merchantCustomerId: String? = null,
@SerializedName("provider") val pspType: PspType? = null,
@SerializedName("deviceFingerPrint") val deviceFingerPrint: String? = null,
)