Skip to content

Commit 5ccd4b7

Browse files
committed
Update enums
1 parent 6f39540 commit 5ccd4b7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/typings/checkout/responseAdditionalDataCommon.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class ResponseAdditionalDataCommon {
102102
*/
103103
'fraudResultType'?: ResponseAdditionalDataCommon.FraudResultTypeEnum;
104104
/**
105-
* The risk level of the payment as determined by the FDM machine learning model.
105+
* 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:\\n* veryLow\\n* low\\n* medium\\n* high\\n* veryHigh\\n\\n>
106106
*/
107107
'fraudRiskLevel'?: ResponseAdditionalDataCommon.FraudRiskLevelEnum;
108108
/**
@@ -598,11 +598,11 @@ export namespace ResponseAdditionalDataCommon {
598598
Fraud = 'FRAUD'
599599
}
600600
export enum FraudRiskLevelEnum {
601-
VeryLow = 'Very low',
602-
Low = 'Low',
603-
Medium = 'Medium',
604-
High = 'High',
605-
VeryHigh = 'Very high'
601+
VeryLow = 'veryLow',
602+
Low = 'low',
603+
Medium = 'medium',
604+
High = 'high',
605+
VeryHigh = 'veryHigh'
606606
}
607607
export enum RecurringProcessingModelEnum {
608608
CardOnFile = 'CardOnFile',

0 commit comments

Comments
 (0)