Skip to content

Commit a95bf21

Browse files
AdyenAutomationBotAdyenAutomationBot
and
AdyenAutomationBot
authored
Code generation: update services and models (#741)
* [reformat][adyen-sdk-automation] automated change * style(fmt): code formatted --------- Co-authored-by: AdyenAutomationBot <Adyen Automation [email protected]>
1 parent 7fe2146 commit a95bf21

29 files changed

+3756
-312
lines changed

src/Adyen/Model/AcsWebhooks/ChallengeInfo.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -245,13 +245,15 @@ public function getModelName()
245245
return self::$openAPIModelName;
246246
}
247247

248+
public const CHALLENGE_CANCEL__00 = '00';
248249
public const CHALLENGE_CANCEL__01 = '01';
249250
public const CHALLENGE_CANCEL__02 = '02';
250251
public const CHALLENGE_CANCEL__03 = '03';
251252
public const CHALLENGE_CANCEL__04 = '04';
252253
public const CHALLENGE_CANCEL__05 = '05';
253254
public const CHALLENGE_CANCEL__06 = '06';
254255
public const CHALLENGE_CANCEL__07 = '07';
256+
public const CHALLENGE_CANCEL__08 = '08';
255257
public const FLOW_OTP_SMS = 'OTP_SMS';
256258
public const FLOW_OOB = 'OOB';
257259

@@ -263,13 +265,15 @@ public function getModelName()
263265
public function getChallengeCancelAllowableValues()
264266
{
265267
return [
268+
self::CHALLENGE_CANCEL__00,
266269
self::CHALLENGE_CANCEL__01,
267270
self::CHALLENGE_CANCEL__02,
268271
self::CHALLENGE_CANCEL__03,
269272
self::CHALLENGE_CANCEL__04,
270273
self::CHALLENGE_CANCEL__05,
271274
self::CHALLENGE_CANCEL__06,
272275
self::CHALLENGE_CANCEL__07,
276+
self::CHALLENGE_CANCEL__08,
273277
];
274278
}
275279
/**
@@ -386,7 +390,7 @@ public function getChallengeCancel()
386390
/**
387391
* Sets challengeCancel
388392
*
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.
390394
*
391395
* @return self
392396
*/

src/Adyen/Model/BalancePlatform/AccountHolder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ public function getStatus()
646646
/**
647647
* Sets status
648648
*
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.
650650
*
651651
* @return self
652652
*/

src/Adyen/Model/BalancePlatform/AccountHolderUpdateRequest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ public function getStatus()
578578
/**
579579
* Sets status
580580
*
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.
582582
*
583583
* @return self
584584
*/

0 commit comments

Comments
 (0)