You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Adyen/Model/Payout/ResponseAdditionalDataCommon.php
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -584,8 +584,9 @@ public function getModelName()
584
584
returnself::$openAPIModelName;
585
585
}
586
586
587
+
publicconstFRAUD_RESULT_TYPE_AMBER = 'AMBER';
587
588
publicconstFRAUD_RESULT_TYPE_GREEN = 'GREEN';
588
-
publicconstFRAUD_RESULT_TYPE_FRAUD = 'FRAUD';
589
+
publicconstFRAUD_RESULT_TYPE_RED = 'RED';
589
590
publicconstFRAUD_RISK_LEVEL_VERY_LOW = 'veryLow';
590
591
publicconstFRAUD_RISK_LEVEL_LOW = 'low';
591
592
publicconstFRAUD_RISK_LEVEL_MEDIUM = 'medium';
@@ -606,8 +607,9 @@ public function getModelName()
606
607
publicfunctiongetFraudResultTypeAllowableValues()
607
608
{
608
609
return [
610
+
self::FRAUD_RESULT_TYPE_AMBER,
609
611
self::FRAUD_RESULT_TYPE_GREEN,
610
-
self::FRAUD_RESULT_TYPE_FRAUD,
612
+
self::FRAUD_RESULT_TYPE_RED,
611
613
];
612
614
}
613
615
/**
@@ -1350,7 +1352,7 @@ public function getFraudResultType()
1350
1352
/**
1351
1353
* Sets fraudResultType
1352
1354
*
1353
-
* @param string|null $fraudResultType The fraud result properties of the payment.
1355
+
* @param string|null $fraudResultType The fraud result properties of the payment. Possible values: * AMBER * GREEN * RED
1354
1356
*
1355
1357
* @return self
1356
1358
*/
@@ -1384,7 +1386,7 @@ public function getFraudRiskLevel()
1384
1386
/**
1385
1387
* Sets fraudRiskLevel
1386
1388
*
1387
-
* @param string|null $fraudRiskLevel The risk level of the transaction as classified by the [machine learning](https://docs.adyen.com/risk-management/configure-your-risk-profile/machine-learning-rules/) fraud risk rule. The risk level indicates the likelihood that a transaction will result in a fraudulent dispute. The possible return values are: * veryLow * low * medium * high * veryHigh
1389
+
* @param string|null $fraudRiskLevel The risk level of the transaction as classified by the [machine learning](https://docs.adyen.com/risk-management/configure-your-risk-profile/machine-learning-rules/) fraud risk rule. The risk level indicates the likelihood that a transaction will result in a fraudulent dispute. Possible values: * veryLow * low * medium * high * veryHigh
0 commit comments