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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

namespace Adyen\Model\BalancePlatform;

use \ArrayAccess;
use ArrayAccess;
use Adyen\Model\BalancePlatform\ObjectSerializer;

/**
* AULocalAccountIdentification Class Doc Comment
*
* @package Adyen
* @implements \ArrayAccess<string, mixed>
* @implements ArrayAccess<string, mixed>
*/
class AULocalAccountIdentification implements ModelInterface, ArrayAccess, \JsonSerializable
{
Expand Down
4 changes: 2 additions & 2 deletions src/Adyen/Model/BalancePlatform/AccountHolder.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

namespace Adyen\Model\BalancePlatform;

use \ArrayAccess;
use ArrayAccess;
use Adyen\Model\BalancePlatform\ObjectSerializer;

/**
* AccountHolder Class Doc Comment
*
* @package Adyen
* @implements \ArrayAccess<string, mixed>
* @implements ArrayAccess<string, mixed>
*/
class AccountHolder implements ModelInterface, ArrayAccess, \JsonSerializable
{
Expand Down
4 changes: 2 additions & 2 deletions src/Adyen/Model/BalancePlatform/AccountHolderCapability.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

namespace Adyen\Model\BalancePlatform;

use \ArrayAccess;
use ArrayAccess;
use Adyen\Model\BalancePlatform\ObjectSerializer;

/**
* AccountHolderCapability Class Doc Comment
*
* @package Adyen
* @implements \ArrayAccess<string, mixed>
* @implements ArrayAccess<string, mixed>
*/
class AccountHolderCapability implements ModelInterface, ArrayAccess, \JsonSerializable
{
Expand Down
4 changes: 2 additions & 2 deletions src/Adyen/Model/BalancePlatform/AccountHolderInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

namespace Adyen\Model\BalancePlatform;

use \ArrayAccess;
use ArrayAccess;
use Adyen\Model\BalancePlatform\ObjectSerializer;

/**
* AccountHolderInfo Class Doc Comment
*
* @package Adyen
* @implements \ArrayAccess<string, mixed>
* @implements ArrayAccess<string, mixed>
*/
class AccountHolderInfo implements ModelInterface, ArrayAccess, \JsonSerializable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

namespace Adyen\Model\BalancePlatform;

use \ArrayAccess;
use ArrayAccess;
use Adyen\Model\BalancePlatform\ObjectSerializer;

/**
* AccountHolderUpdateRequest Class Doc Comment
*
* @package Adyen
* @implements \ArrayAccess<string, mixed>
* @implements ArrayAccess<string, mixed>
*/
class AccountHolderUpdateRequest implements ModelInterface, ArrayAccess, \JsonSerializable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

namespace Adyen\Model\BalancePlatform;

use \ArrayAccess;
use ArrayAccess;
use Adyen\Model\BalancePlatform\ObjectSerializer;

/**
* AccountSupportingEntityCapability Class Doc Comment
*
* @package Adyen
* @implements \ArrayAccess<string, mixed>
* @implements ArrayAccess<string, mixed>
*/
class AccountSupportingEntityCapability implements ModelInterface, ArrayAccess, \JsonSerializable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

namespace Adyen\Model\BalancePlatform;

use \ArrayAccess;
use ArrayAccess;
use Adyen\Model\BalancePlatform\ObjectSerializer;

/**
* ActiveNetworkTokensRestriction Class Doc Comment
*
* @package Adyen
* @implements \ArrayAccess<string, mixed>
* @implements ArrayAccess<string, mixed>
*/
class ActiveNetworkTokensRestriction implements ModelInterface, ArrayAccess, \JsonSerializable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

namespace Adyen\Model\BalancePlatform;

use \ArrayAccess;
use ArrayAccess;
use Adyen\Model\BalancePlatform\ObjectSerializer;

/**
* AdditionalBankIdentification Class Doc Comment
*
* @package Adyen
* @implements \ArrayAccess<string, mixed>
* @implements ArrayAccess<string, mixed>
*/
class AdditionalBankIdentification implements ModelInterface, ArrayAccess, \JsonSerializable
{
Expand Down Expand Up @@ -218,6 +218,8 @@ public function getModelName()
return self::$openAPIModelName;
}

public const TYPE_AU_BSB_CODE = 'auBsbCode';
public const TYPE_CA_ROUTING_NUMBER = 'caRoutingNumber';
public const TYPE_GB_SORT_CODE = 'gbSortCode';
public const TYPE_US_ROUTING_NUMBER = 'usRoutingNumber';

Expand All @@ -229,6 +231,8 @@ public function getModelName()
public function getTypeAllowableValues()
{
return [
self::TYPE_AU_BSB_CODE,
self::TYPE_CA_ROUTING_NUMBER,
self::TYPE_GB_SORT_CODE,
self::TYPE_US_ROUTING_NUMBER,
];
Expand Down Expand Up @@ -340,7 +344,7 @@ public function getType()
/**
* Sets type
*
* @param string|null $type The type of additional bank identification, depending on the country. Possible values: * **gbSortCode**: The 6-digit [UK sort code](https://en.wikipedia.org/wiki/Sort_code), without separators or spaces * **usRoutingNumber**: The 9-digit [routing number](https://en.wikipedia.org/wiki/ABA_routing_transit_number), without separators or spaces.
* @param string|null $type The type of additional bank identification, depending on the country. Possible values: * **auBsbCode**: The 6-digit [Australian Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or spaces. * **caRoutingNumber**: The 9-digit [Canadian routing number](https://en.wikipedia.org/wiki/Routing_number_(Canada)), in EFT format, without separators or spaces. * **gbSortCode**: The 6-digit [UK sort code](https://en.wikipedia.org/wiki/Sort_code), without separators or spaces * **usRoutingNumber**: The 9-digit [routing number](https://en.wikipedia.org/wiki/ABA_routing_transit_number), without separators or spaces.
*
* @return self
*/
Expand Down
Loading
Loading