Skip to content

Commit

Permalink
Add custom fraud variable
Browse files Browse the repository at this point in the history
  • Loading branch information
tuncaserhat committed Aug 7, 2024
1 parent 352e144 commit ba15b6b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions adapter/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -2017,9 +2017,10 @@ type Card struct {
}

type FraudCheckParameters struct {
BuyerExternalId string `json:"buyerExternalId,omitempty"`
BuyerPhoneNumber string `json:"buyerPhoneNumber,omitempty"`
BuyerEmail string `json:"buyerEmail,omitempty"`
BuyerExternalId string `json:"buyerExternalId,omitempty"`
BuyerPhoneNumber string `json:"buyerPhoneNumber,omitempty"`
BuyerEmail string `json:"buyerEmail,omitempty"`
CustomFraudVariable string `json:"customFraudVariable,omitempty"`
}

type PosApmInstallment struct {
Expand Down

0 comments on commit ba15b6b

Please sign in to comment.