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/AcsWebhooks/ChallengeInfo.php
+5-1
Original file line number
Diff line number
Diff line change
@@ -245,13 +245,15 @@ public function getModelName()
245
245
returnself::$openAPIModelName;
246
246
}
247
247
248
+
publicconstCHALLENGE_CANCEL__00 = '00';
248
249
publicconstCHALLENGE_CANCEL__01 = '01';
249
250
publicconstCHALLENGE_CANCEL__02 = '02';
250
251
publicconstCHALLENGE_CANCEL__03 = '03';
251
252
publicconstCHALLENGE_CANCEL__04 = '04';
252
253
publicconstCHALLENGE_CANCEL__05 = '05';
253
254
publicconstCHALLENGE_CANCEL__06 = '06';
254
255
publicconstCHALLENGE_CANCEL__07 = '07';
256
+
publicconstCHALLENGE_CANCEL__08 = '08';
255
257
publicconstFLOW_OTP_SMS = 'OTP_SMS';
256
258
publicconstFLOW_OOB = 'OOB';
257
259
@@ -263,13 +265,15 @@ public function getModelName()
263
265
publicfunctiongetChallengeCancelAllowableValues()
264
266
{
265
267
return [
268
+
self::CHALLENGE_CANCEL__00,
266
269
self::CHALLENGE_CANCEL__01,
267
270
self::CHALLENGE_CANCEL__02,
268
271
self::CHALLENGE_CANCEL__03,
269
272
self::CHALLENGE_CANCEL__04,
270
273
self::CHALLENGE_CANCEL__05,
271
274
self::CHALLENGE_CANCEL__06,
272
275
self::CHALLENGE_CANCEL__07,
276
+
self::CHALLENGE_CANCEL__08,
273
277
];
274
278
}
275
279
/**
@@ -386,7 +390,7 @@ public function getChallengeCancel()
386
390
/**
387
391
* Sets challengeCancel
388
392
*
389
-
* @param string|null $challengeCancel Indicator informing the Access Control Server (ACS) and the Directory Server (DS) that the authentication has been cancelled. For possible values, refer to [3D Secure API reference](https://docs.adyen.com/online-payments/3d-secure/api-reference#mpidata).
393
+
* @param string|null $challengeCancel Indicator informing the Access Control Server (ACS) and the Directory Server (DS) that the authentication has been cancelled. Possible values: * **00**: Data element is absent or value has been sent back with the key `challengeCancel`. * **01**: Cardholder selected **Cancel**. * **02**: 3DS Requestor cancelled Authentication. * **03**: Transaction abandoned. * **04**: Transaction timed out at ACS — other timeouts. * **05**: Transaction timed out at ACS — first CReq not received by ACS. * **06**: Transaction error. * **07**: Unknown. * **08**: Transaction time out at SDK.
Copy file name to clipboardExpand all lines: src/Adyen/Model/BalancePlatform/AccountHolder.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -646,7 +646,7 @@ public function getStatus()
646
646
/**
647
647
* Sets status
648
648
*
649
-
* @param string|null $status The status of the account holder. Possible values: * **active**: The account holder is active. This is the default status when creating an account holder. * **suspended**: The account holder is permanently deactivated by Adyen. This action cannot be undone. * **closed**: The account holder is permanently deactivated by you. This action cannot be undone.
649
+
* @param string|null $status The status of the account holder. Possible values: * **active**: The account holder is active and allowed to use its capabilities. This is the initial status for account holders and balance accounts. You can change this status to **suspended** or **closed**. * **suspended**: The account holder is temporarily disabled and payouts are blocked. You can change this status to **active** or **closed**. * **closed**: The account holder and all of its capabilities are permanently disabled. This is a final status and cannot be changed.
Copy file name to clipboardExpand all lines: src/Adyen/Model/BalancePlatform/AccountHolderUpdateRequest.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -578,7 +578,7 @@ public function getStatus()
578
578
/**
579
579
* Sets status
580
580
*
581
-
* @param string|null $status The status of the account holder. Possible values: * **active**: The account holder is active. This is the default status when creating an account holder. * **suspended**: The account holder is permanently deactivated by Adyen. This action cannot be undone. * **closed**: The account holder is permanently deactivated by you. This action cannot be undone.
581
+
* @param string|null $status The status of the account holder. Possible values: * **active**: The account holder is active and allowed to use its capabilities. This is the initial status for account holders and balance accounts. You can change this status to **suspended** or **closed**. * **suspended**: The account holder is temporarily disabled and payouts are blocked. You can change this status to **active** or **closed**. * **closed**: The account holder and all of its capabilities are permanently disabled. This is a final status and cannot be changed.
0 commit comments