Skip to content

Commit

Permalink
Update all services (#608)
Browse files Browse the repository at this point in the history
* [reformat][adyen-sdk-automation] automated change

* style(fmt): code formatted

---------

Co-authored-by: AdyenAutomationBot <Adyen Automation plugins_dev@adyen.com>
  • Loading branch information
AdyenAutomationBot and AdyenAutomationBot authored Jan 31, 2024
1 parent 888e1fa commit 5392fa9
Show file tree
Hide file tree
Showing 186 changed files with 6,625 additions and 229 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public function __construct(array $data = null)
{
$this->setIfExists('accountNumber', $data ?? [], null);
$this->setIfExists('bsbCode', $data ?? [], null);
$this->setIfExists('type', $data ?? [], 'auLocal');
$this->setIfExists('type', $data ?? [], null);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Adyen/Model/BalancePlatform/AddressRequirement.php
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public function __construct(array $data = null)
{
$this->setIfExists('description', $data ?? [], null);
$this->setIfExists('requiredAddressFields', $data ?? [], null);
$this->setIfExists('type', $data ?? [], 'addressRequirement');
$this->setIfExists('type', $data ?? [], null);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public function __construct(array $data = null)
$this->setIfExists('description', $data ?? [], null);
$this->setIfExists('max', $data ?? [], null);
$this->setIfExists('min', $data ?? [], null);
$this->setIfExists('type', $data ?? [], 'amountMinMaxRequirement');
$this->setIfExists('type', $data ?? [], null);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public function __construct(array $data = null)
$this->setIfExists('accountNumber', $data ?? [], null);
$this->setIfExists('bankCode', $data ?? [], null);
$this->setIfExists('branchNumber', $data ?? [], null);
$this->setIfExists('type', $data ?? [], 'brLocal');
$this->setIfExists('type', $data ?? [], null);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -317,10 +317,10 @@ public function __construct(array $data = null)
{
$this->setIfExists('accountNumber', $data ?? [], null);
$this->setIfExists('bsbCode', $data ?? [], null);
$this->setIfExists('type', $data ?? [], 'usLocal');
$this->setIfExists('type', $data ?? [], null);
$this->setIfExists('bankCode', $data ?? [], null);
$this->setIfExists('branchNumber', $data ?? [], null);
$this->setIfExists('accountType', $data ?? [], 'checking');
$this->setIfExists('accountType', $data ?? [], null);
$this->setIfExists('institutionNumber', $data ?? [], null);
$this->setIfExists('transitNumber', $data ?? [], null);
$this->setIfExists('clearingCode', $data ?? [], null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ public function __construct(array $data = null)
{
$this->setIfExists('bankAccountIdentificationTypes', $data ?? [], null);
$this->setIfExists('description', $data ?? [], null);
$this->setIfExists('type', $data ?? [], 'bankAccountIdentificationTypeRequirement');
$this->setIfExists('type', $data ?? [], null);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -317,10 +317,10 @@ public function __construct(array $data = null)
{
$this->setIfExists('accountNumber', $data ?? [], null);
$this->setIfExists('bsbCode', $data ?? [], null);
$this->setIfExists('type', $data ?? [], 'usLocal');
$this->setIfExists('type', $data ?? [], null);
$this->setIfExists('bankCode', $data ?? [], null);
$this->setIfExists('branchNumber', $data ?? [], null);
$this->setIfExists('accountType', $data ?? [], 'checking');
$this->setIfExists('accountType', $data ?? [], null);
$this->setIfExists('institutionNumber', $data ?? [], null);
$this->setIfExists('transitNumber', $data ?? [], null);
$this->setIfExists('clearingCode', $data ?? [], null);
Expand Down
Loading

0 comments on commit 5392fa9

Please sign in to comment.