Skip to content

Commit a320e42

Browse files
[balanceplatform] Automated update from Adyen/adyen-openapi@9c9bc16
1 parent ff89742 commit a320e42

30 files changed

+11357
-0
lines changed

src/Adyen/Model/BalancePlatform/ApproveAssociationRequest.php

Lines changed: 509 additions & 0 deletions
Large diffs are not rendered by default.

src/Adyen/Model/BalancePlatform/ApproveAssociationResponse.php

Lines changed: 407 additions & 0 deletions
Large diffs are not rendered by default.

src/Adyen/Model/BalancePlatform/Association.php

Lines changed: 509 additions & 0 deletions
Large diffs are not rendered by default.

src/Adyen/Model/BalancePlatform/AssociationListing.php

Lines changed: 608 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?php
2+
3+
/**
4+
* Configuration API
5+
*
6+
* The version of the OpenAPI document: 2
7+
* Generated by: https://openapi-generator.tech
8+
* OpenAPI Generator version: 6.0.1
9+
*
10+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11+
* https://openapi-generator.tech
12+
* Do not edit the class manually.
13+
*/
14+
15+
16+
namespace Adyen\Model\BalancePlatform;
17+
18+
use Adyen\Model\BalancePlatform\ObjectSerializer;
19+
20+
/**
21+
* AssociationStatus Class Doc Comment
22+
*
23+
* @package Adyen
24+
*/
25+
class AssociationStatus
26+
{
27+
/**
28+
* Possible values of this enum
29+
*/
30+
public const PENDING_APPROVAL = 'pendingApproval';
31+
32+
public const ACTIVE = 'active';
33+
34+
/**
35+
* Gets allowable values of the enum
36+
* @return string[]
37+
*/
38+
public static function getAllowableEnumValues()
39+
{
40+
return [
41+
self::PENDING_APPROVAL,
42+
self::ACTIVE
43+
];
44+
}
45+
}

0 commit comments

Comments
 (0)