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
8 changes: 8 additions & 0 deletions sdk-generation-log/legalentitymanagement.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"service": "legalentitymanagement",
"project": "php",
"generatedAt": "2026-04-15T07:59:12Z",
"openapiCommitSha": "3550ecd3f320efaad6bee55ffed5122cb9ba09d5",
"automationCommitSha": "1ceda93a33430aa189b6141d5f6ea2e61051c7fd",
"libraryCommitSha": "543a990aa9c3dc0c5899292b33c6762d153edca7"
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ class BankAccountInfoAccountIdentification implements ModelInterface, ArrayAcces
'transitNumber' => 'string',
'bankCode' => 'string',
'clearingCode' => 'string',
'bic' => 'string',
'iban' => 'string',
'additionalBankIdentification' => '\Adyen\Model\LegalEntityManagement\AdditionalBankIdentification',
'bic' => 'string',
'clearingNumber' => 'string',
'sortCode' => 'string',
'routingNumber' => 'string'
Expand All @@ -75,9 +75,9 @@ class BankAccountInfoAccountIdentification implements ModelInterface, ArrayAcces
'transitNumber' => null,
'bankCode' => null,
'clearingCode' => null,
'bic' => null,
'iban' => null,
'additionalBankIdentification' => null,
'bic' => null,
'clearingNumber' => null,
'sortCode' => null,
'routingNumber' => null
Expand All @@ -97,9 +97,9 @@ class BankAccountInfoAccountIdentification implements ModelInterface, ArrayAcces
'transitNumber' => false,
'bankCode' => false,
'clearingCode' => false,
'bic' => false,
'iban' => false,
'additionalBankIdentification' => false,
'bic' => false,
'clearingNumber' => false,
'sortCode' => false,
'routingNumber' => false
Expand Down Expand Up @@ -199,9 +199,9 @@ public function isNullableSetToNull(string $property): bool
'transitNumber' => 'transitNumber',
'bankCode' => 'bankCode',
'clearingCode' => 'clearingCode',
'bic' => 'bic',
'iban' => 'iban',
'additionalBankIdentification' => 'additionalBankIdentification',
'bic' => 'bic',
'clearingNumber' => 'clearingNumber',
'sortCode' => 'sortCode',
'routingNumber' => 'routingNumber'
Expand All @@ -221,9 +221,9 @@ public function isNullableSetToNull(string $property): bool
'transitNumber' => 'setTransitNumber',
'bankCode' => 'setBankCode',
'clearingCode' => 'setClearingCode',
'bic' => 'setBic',
'iban' => 'setIban',
'additionalBankIdentification' => 'setAdditionalBankIdentification',
'bic' => 'setBic',
'clearingNumber' => 'setClearingNumber',
'sortCode' => 'setSortCode',
'routingNumber' => 'setRoutingNumber'
Expand All @@ -243,9 +243,9 @@ public function isNullableSetToNull(string $property): bool
'transitNumber' => 'getTransitNumber',
'bankCode' => 'getBankCode',
'clearingCode' => 'getClearingCode',
'bic' => 'getBic',
'iban' => 'getIban',
'additionalBankIdentification' => 'getAdditionalBankIdentification',
'bic' => 'getBic',
'clearingNumber' => 'getClearingNumber',
'sortCode' => 'getSortCode',
'routingNumber' => 'getRoutingNumber'
Expand Down Expand Up @@ -315,9 +315,9 @@ public function __construct(?array $data = null)
$this->setIfExists('transitNumber', $data ?? [], null);
$this->setIfExists('bankCode', $data ?? [], null);
$this->setIfExists('clearingCode', $data ?? [], null);
$this->setIfExists('bic', $data ?? [], null);
$this->setIfExists('iban', $data ?? [], null);
$this->setIfExists('additionalBankIdentification', $data ?? [], null);
$this->setIfExists('bic', $data ?? [], null);
$this->setIfExists('clearingNumber', $data ?? [], null);
$this->setIfExists('sortCode', $data ?? [], null);
$this->setIfExists('routingNumber', $data ?? [], null);
Expand Down Expand Up @@ -373,12 +373,12 @@ public function listInvalidProperties()
if ($this->container['clearingCode'] === null) {
$invalidProperties[] = "'clearingCode' can't be null";
}
if ($this->container['iban'] === null) {
$invalidProperties[] = "'iban' can't be null";
}
if ($this->container['bic'] === null) {
$invalidProperties[] = "'bic' can't be null";
}
if ($this->container['iban'] === null) {
$invalidProperties[] = "'iban' can't be null";
}
if ($this->container['clearingNumber'] === null) {
$invalidProperties[] = "'clearingNumber' can't be null";
}
Expand Down Expand Up @@ -596,73 +596,73 @@ public function setClearingCode($clearingCode)
}

/**
* Gets iban
* Gets bic
*
* @return string
*/
public function getIban()
public function getBic()
{
return $this->container['iban'];
return $this->container['bic'];
}

/**
* Sets iban
* Sets bic
*
* @param string $iban The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.
* @param string $bic The bank's 8- or 11-character BIC or SWIFT code.
*
* @return self
*/
public function setIban($iban)
public function setBic($bic)
{
$this->container['iban'] = $iban;
$this->container['bic'] = $bic;

return $this;
}

/**
* Gets additionalBankIdentification
* Gets iban
*
* @return \Adyen\Model\LegalEntityManagement\AdditionalBankIdentification|null
* @return string
*/
public function getAdditionalBankIdentification()
public function getIban()
{
return $this->container['additionalBankIdentification'];
return $this->container['iban'];
}

/**
* Sets additionalBankIdentification
* Sets iban
*
* @param \Adyen\Model\LegalEntityManagement\AdditionalBankIdentification|null $additionalBankIdentification additionalBankIdentification
* @param string $iban The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.
*
* @return self
*/
public function setAdditionalBankIdentification($additionalBankIdentification)
public function setIban($iban)
{
$this->container['additionalBankIdentification'] = $additionalBankIdentification;
$this->container['iban'] = $iban;

return $this;
}

/**
* Gets bic
* Gets additionalBankIdentification
*
* @return string
* @return \Adyen\Model\LegalEntityManagement\AdditionalBankIdentification|null
*/
public function getBic()
public function getAdditionalBankIdentification()
{
return $this->container['bic'];
return $this->container['additionalBankIdentification'];
}

/**
* Sets bic
* Sets additionalBankIdentification
*
* @param string $bic The bank's 8- or 11-character BIC or SWIFT code.
* @param \Adyen\Model\LegalEntityManagement\AdditionalBankIdentification|null $additionalBankIdentification additionalBankIdentification
*
* @return self
*/
public function setBic($bic)
public function setAdditionalBankIdentification($additionalBankIdentification)
{
$this->container['bic'] = $bic;
$this->container['additionalBankIdentification'] = $additionalBankIdentification;

return $this;
}
Expand Down
31 changes: 31 additions & 0 deletions src/Adyen/Model/LegalEntityManagement/BusinessLine.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class BusinessLine implements ModelInterface, ArrayAccess, \JsonSerializable
protected static $openAPITypes = [
'id' => 'string',
'industryCode' => 'string',
'industryCodeDescription' => 'string',
'legalEntityId' => 'string',
'problems' => '\Adyen\Model\LegalEntityManagement\CapabilityProblem[]',
'salesChannels' => 'string[]',
Expand All @@ -62,6 +63,7 @@ class BusinessLine implements ModelInterface, ArrayAccess, \JsonSerializable
protected static $openAPIFormats = [
'id' => null,
'industryCode' => null,
'industryCodeDescription' => null,
'legalEntityId' => null,
'problems' => null,
'salesChannels' => null,
Expand All @@ -79,6 +81,7 @@ class BusinessLine implements ModelInterface, ArrayAccess, \JsonSerializable
protected static $openAPINullables = [
'id' => false,
'industryCode' => false,
'industryCodeDescription' => false,
'legalEntityId' => false,
'problems' => false,
'salesChannels' => false,
Expand Down Expand Up @@ -176,6 +179,7 @@ public function isNullableSetToNull(string $property): bool
protected static $attributeMap = [
'id' => 'id',
'industryCode' => 'industryCode',
'industryCodeDescription' => 'industryCodeDescription',
'legalEntityId' => 'legalEntityId',
'problems' => 'problems',
'salesChannels' => 'salesChannels',
Expand All @@ -193,6 +197,7 @@ public function isNullableSetToNull(string $property): bool
protected static $setters = [
'id' => 'setId',
'industryCode' => 'setIndustryCode',
'industryCodeDescription' => 'setIndustryCodeDescription',
'legalEntityId' => 'setLegalEntityId',
'problems' => 'setProblems',
'salesChannels' => 'setSalesChannels',
Expand All @@ -210,6 +215,7 @@ public function isNullableSetToNull(string $property): bool
protected static $getters = [
'id' => 'getId',
'industryCode' => 'getIndustryCode',
'industryCodeDescription' => 'getIndustryCodeDescription',
'legalEntityId' => 'getLegalEntityId',
'problems' => 'getProblems',
'salesChannels' => 'getSalesChannels',
Expand Down Expand Up @@ -294,6 +300,7 @@ public function __construct(?array $data = null)
{
$this->setIfExists('id', $data ?? [], null);
$this->setIfExists('industryCode', $data ?? [], null);
$this->setIfExists('industryCodeDescription', $data ?? [], null);
$this->setIfExists('legalEntityId', $data ?? [], null);
$this->setIfExists('problems', $data ?? [], null);
$this->setIfExists('salesChannels', $data ?? [], null);
Expand Down Expand Up @@ -414,6 +421,30 @@ public function setIndustryCode($industryCode)
return $this;
}

/**
* Gets industryCodeDescription
*
* @return string|null
*/
public function getIndustryCodeDescription()
{
return $this->container['industryCodeDescription'];
}

/**
* Sets industryCodeDescription
*
* @param string|null $industryCodeDescription The description of the industry code.
*
* @return self
*/
public function setIndustryCodeDescription($industryCodeDescription)
{
$this->container['industryCodeDescription'] = $industryCodeDescription;

return $this;
}

/**
* Gets legalEntityId
*
Expand Down
31 changes: 31 additions & 0 deletions src/Adyen/Model/LegalEntityManagement/BusinessLineInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ class BusinessLineInfo implements ModelInterface, ArrayAccess, \JsonSerializable
*/
protected static $openAPITypes = [
'industryCode' => 'string',
'industryCodeDescription' => 'string',
'legalEntityId' => 'string',
'salesChannels' => 'string[]',
'service' => 'string',
Expand All @@ -59,6 +60,7 @@ class BusinessLineInfo implements ModelInterface, ArrayAccess, \JsonSerializable
*/
protected static $openAPIFormats = [
'industryCode' => null,
'industryCodeDescription' => null,
'legalEntityId' => null,
'salesChannels' => null,
'service' => null,
Expand All @@ -74,6 +76,7 @@ class BusinessLineInfo implements ModelInterface, ArrayAccess, \JsonSerializable
*/
protected static $openAPINullables = [
'industryCode' => false,
'industryCodeDescription' => false,
'legalEntityId' => false,
'salesChannels' => false,
'service' => false,
Expand Down Expand Up @@ -169,6 +172,7 @@ public function isNullableSetToNull(string $property): bool
*/
protected static $attributeMap = [
'industryCode' => 'industryCode',
'industryCodeDescription' => 'industryCodeDescription',
'legalEntityId' => 'legalEntityId',
'salesChannels' => 'salesChannels',
'service' => 'service',
Expand All @@ -184,6 +188,7 @@ public function isNullableSetToNull(string $property): bool
*/
protected static $setters = [
'industryCode' => 'setIndustryCode',
'industryCodeDescription' => 'setIndustryCodeDescription',
'legalEntityId' => 'setLegalEntityId',
'salesChannels' => 'setSalesChannels',
'service' => 'setService',
Expand All @@ -199,6 +204,7 @@ public function isNullableSetToNull(string $property): bool
*/
protected static $getters = [
'industryCode' => 'getIndustryCode',
'industryCodeDescription' => 'getIndustryCodeDescription',
'legalEntityId' => 'getLegalEntityId',
'salesChannels' => 'getSalesChannels',
'service' => 'getService',
Expand Down Expand Up @@ -281,6 +287,7 @@ public function getServiceAllowableValues()
public function __construct(?array $data = null)
{
$this->setIfExists('industryCode', $data ?? [], null);
$this->setIfExists('industryCodeDescription', $data ?? [], null);
$this->setIfExists('legalEntityId', $data ?? [], null);
$this->setIfExists('salesChannels', $data ?? [], null);
$this->setIfExists('service', $data ?? [], null);
Expand Down Expand Up @@ -373,6 +380,30 @@ public function setIndustryCode($industryCode)
return $this;
}

/**
* Gets industryCodeDescription
*
* @return string|null
*/
public function getIndustryCodeDescription()
{
return $this->container['industryCodeDescription'];
}

/**
* Sets industryCodeDescription
*
* @param string|null $industryCodeDescription The description of the industry code.
*
* @return self
*/
public function setIndustryCodeDescription($industryCodeDescription)
{
$this->container['industryCodeDescription'] = $industryCodeDescription;

return $this;
}

/**
* Gets legalEntityId
*
Expand Down
Loading
Loading