Skip to content

Commit becb4c9

Browse files
backend/feat/msil: payout transaction report data
1 parent 9c6c5e5 commit becb4c9

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

lib/mobility-core/src/Kernel/External/Payout/Interface/Juspay.hs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ createPayoutOrder config mRoutingId req = do
8080
Payout.AccountDetails
8181
{ name = customerName,
8282
vpa = Just customerVpa,
83-
mobileNo = Just customerPhone
83+
mobileNo = Just customerPhone,
84+
account = Nothing,
85+
ifsc = Nothing
8486
},
8587
detailsType = Just Juspay.UPI_ID
8688
},

lib/mobility-core/src/Kernel/External/Payout/Juspay/Types/Payout.hs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ $(mkBeamInstancesForEnum ''AccountDetailsType)
7474
data AccountDetails = AccountDetails
7575
{ name :: Text,
7676
vpa :: Maybe Text,
77-
mobileNo :: Maybe Text
77+
mobileNo :: Maybe Text,
78+
account :: Maybe Text,
79+
ifsc :: Maybe Text
7880
}
7981
deriving (Show, Generic, ToSchema)
8082
deriving anyclass (FromJSON, ToJSON)

0 commit comments

Comments
 (0)