Skip to content

Commit 1ddf92a

Browse files
[payout] Automated update from Adyen/adyen-openapi@37c03ec
1 parent ff89742 commit 1ddf92a

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/Adyen/Model/Payout/ResponseAdditionalDataCommon.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -584,8 +584,9 @@ public function getModelName()
584584
return self::$openAPIModelName;
585585
}
586586

587+
public const FRAUD_RESULT_TYPE_AMBER = 'AMBER';
587588
public const FRAUD_RESULT_TYPE_GREEN = 'GREEN';
588-
public const FRAUD_RESULT_TYPE_FRAUD = 'FRAUD';
589+
public const FRAUD_RESULT_TYPE_RED = 'RED';
589590
public const FRAUD_RISK_LEVEL_VERY_LOW = 'veryLow';
590591
public const FRAUD_RISK_LEVEL_LOW = 'low';
591592
public const FRAUD_RISK_LEVEL_MEDIUM = 'medium';
@@ -606,8 +607,9 @@ public function getModelName()
606607
public function getFraudResultTypeAllowableValues()
607608
{
608609
return [
610+
self::FRAUD_RESULT_TYPE_AMBER,
609611
self::FRAUD_RESULT_TYPE_GREEN,
610-
self::FRAUD_RESULT_TYPE_FRAUD,
612+
self::FRAUD_RESULT_TYPE_RED,
611613
];
612614
}
613615
/**
@@ -1350,7 +1352,7 @@ public function getFraudResultType()
13501352
/**
13511353
* Sets fraudResultType
13521354
*
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
13541356
*
13551357
* @return self
13561358
*/
@@ -1384,7 +1386,7 @@ public function getFraudRiskLevel()
13841386
/**
13851387
* Sets fraudRiskLevel
13861388
*
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
13881390
*
13891391
* @return self
13901392
*/

0 commit comments

Comments
 (0)