Skip to content
Merged
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
470 changes: 470 additions & 0 deletions src/Adyen/Model/Capital/AULocalAccountIdentification.php

Large diffs are not rendered by default.

466 changes: 466 additions & 0 deletions src/Adyen/Model/Capital/AULocalAccountIdentificationAllOf.php

Large diffs are not rendered by default.

441 changes: 441 additions & 0 deletions src/Adyen/Model/Capital/Action.php

Large diffs are not rendered by default.

435 changes: 435 additions & 0 deletions src/Adyen/Model/Capital/AdditionalBankIdentification.php

Large diffs are not rendered by default.

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

/**
* Capital API
*
* The version of the OpenAPI document: 1
* 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\Capital;

use Adyen\Model\Capital\ObjectSerializer;

/**
* AdditionalBankIdentificationTypes Class Doc Comment
*
* @package Adyen
*/
class AdditionalBankIdentificationTypes
{
/**
* Possible values of this enum
*/
public const AU_BSB_CODE = 'auBsbCode';

public const CA_ROUTING_NUMBER = 'caRoutingNumber';

public const GB_SORT_CODE = 'gbSortCode';

public const HK_BANK_CODE = 'hkBankCode';

public const JP_ZENGIN_CODE = 'jpZenginCode';

public const NZ_BANK_BRANCH_CODE = 'nzBankBranchCode';

public const US_ROUTING_NUMBER = 'usRoutingNumber';

/**
* Gets allowable values of the enum
* @return string[]
*/
public static function getAllowableEnumValues()
{
return [
self::AU_BSB_CODE,
self::CA_ROUTING_NUMBER,
self::GB_SORT_CODE,
self::HK_BANK_CODE,
self::JP_ZENGIN_CODE,
self::NZ_BANK_BRANCH_CODE,
self::US_ROUTING_NUMBER
];
}
}
Loading