Skip to content

Commit c5b77b8

Browse files
[adyen-sdk-automation] automated changes
1 parent 852e733 commit c5b77b8

File tree

95 files changed

+19580
-81
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+19580
-81
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+
use Adyen\Model\BalancePlatform\ObjectSerializer;
18+
19+
/**
20+
* AssociationStatus Class Doc Comment
21+
*
22+
* @package Adyen
23+
*/
24+
class AssociationStatus
25+
{
26+
/**
27+
* Possible values of this enum
28+
*/
29+
public const PENDING_APPROVAL = 'pendingApproval';
30+
31+
public const ACTIVE = 'active';
32+
33+
/**
34+
* Gets allowable values of the enum
35+
* @return string[]
36+
*/
37+
public static function getAllowableEnumValues()
38+
{
39+
return [
40+
self::PENDING_APPROVAL,
41+
self::ACTIVE
42+
];
43+
}
44+
}
45+

0 commit comments

Comments
 (0)