Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions sdk-generation-log/payout.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"service": "payout",
"project": "node",
"generatedAt": "2026-04-20T10:46:54Z",
"openapiCommitSha": "3550ecd3f320efaad6bee55ffed5122cb9ba09d5",
"automationCommitSha": "4ad0c0c7e87bc0e5994a9a3350a991d0691350bb",
"libraryCommitSha": "e0c07e05d8c98b20f336ef0fa714fe95f4172c2f"
}
7 changes: 4 additions & 3 deletions src/typings/payout/responseAdditionalDataCommon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ export class ResponseAdditionalDataCommon {
*/
"fraudManualReview"?: string;
/**
* The fraud result properties of the payment.
* The fraud result properties of the payment. Possible values: * AMBER * GREEN * RED
*/
"fraudResultType"?: ResponseAdditionalDataCommon.FraudResultTypeEnum;
/**
* 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
* 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
*/
"fraudRiskLevel"?: ResponseAdditionalDataCommon.FraudRiskLevelEnum;
/**
Expand Down Expand Up @@ -662,8 +662,9 @@ export class ResponseAdditionalDataCommon {

export namespace ResponseAdditionalDataCommon {
export enum FraudResultTypeEnum {
Amber = 'AMBER',
Green = 'GREEN',
Fraud = 'FRAUD'
Red = 'RED'
}
export enum FraudRiskLevelEnum {
VeryLow = 'veryLow',
Expand Down
Loading