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
407 changes: 407 additions & 0 deletions src/Adyen/Model/BalancePlatform/ApproveAssociationResponse.php

Large diffs are not rendered by default.

407 changes: 407 additions & 0 deletions src/Adyen/Model/BalancePlatform/ApproveTransferLimitRequest.php

Large diffs are not rendered by default.

509 changes: 509 additions & 0 deletions src/Adyen/Model/BalancePlatform/Association.php

Large diffs are not rendered by default.

608 changes: 608 additions & 0 deletions src/Adyen/Model/BalancePlatform/AssociationListing.php

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions src/Adyen/Model/BalancePlatform/AssociationStatus.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?php

/**
* Configuration API
*
* The version of the OpenAPI document: 2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 6.0.1
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/


namespace Adyen\Model\BalancePlatform;

use Adyen\Model\BalancePlatform\ObjectSerializer;

/**
* AssociationStatus Class Doc Comment
*
* @package Adyen
*/
class AssociationStatus
{
/**
* Possible values of this enum
*/
public const PENDING_APPROVAL = 'pendingApproval';

public const ACTIVE = 'active';

/**
* Gets allowable values of the enum
* @return string[]
*/
public static function getAllowableEnumValues()
{
return [
self::PENDING_APPROVAL,
self::ACTIVE
];
}
}
Loading