Skip to content

Commit

Permalink
Update all services (#684)
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 [email protected]>
  • Loading branch information
AdyenAutomationBot and AdyenAutomationBot authored Aug 15, 2024
1 parent 8f1f620 commit 738ee9b
Show file tree
Hide file tree
Showing 45 changed files with 7,261 additions and 228 deletions.
31 changes: 31 additions & 0 deletions src/Adyen/Model/Checkout/AchDetails.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class AchDetails implements ModelInterface, ArrayAccess, \JsonSerializable
'ownerName' => 'string',
'recurringDetailReference' => 'string',
'storedPaymentMethodId' => 'string',
'transferInstrumentId' => 'string',
'type' => 'string'
];

Expand All @@ -73,6 +74,7 @@ class AchDetails implements ModelInterface, ArrayAccess, \JsonSerializable
'ownerName' => null,
'recurringDetailReference' => null,
'storedPaymentMethodId' => null,
'transferInstrumentId' => null,
'type' => null
];

Expand All @@ -91,6 +93,7 @@ class AchDetails implements ModelInterface, ArrayAccess, \JsonSerializable
'ownerName' => false,
'recurringDetailReference' => false,
'storedPaymentMethodId' => false,
'transferInstrumentId' => false,
'type' => false
];

Expand Down Expand Up @@ -189,6 +192,7 @@ public function isNullableSetToNull(string $property): bool
'ownerName' => 'ownerName',
'recurringDetailReference' => 'recurringDetailReference',
'storedPaymentMethodId' => 'storedPaymentMethodId',
'transferInstrumentId' => 'transferInstrumentId',
'type' => 'type'
];

Expand All @@ -207,6 +211,7 @@ public function isNullableSetToNull(string $property): bool
'ownerName' => 'setOwnerName',
'recurringDetailReference' => 'setRecurringDetailReference',
'storedPaymentMethodId' => 'setStoredPaymentMethodId',
'transferInstrumentId' => 'setTransferInstrumentId',
'type' => 'setType'
];

Expand All @@ -225,6 +230,7 @@ public function isNullableSetToNull(string $property): bool
'ownerName' => 'getOwnerName',
'recurringDetailReference' => 'getRecurringDetailReference',
'storedPaymentMethodId' => 'getStoredPaymentMethodId',
'transferInstrumentId' => 'getTransferInstrumentId',
'type' => 'getType'
];

Expand Down Expand Up @@ -332,6 +338,7 @@ public function __construct(array $data = null)
$this->setIfExists('ownerName', $data ?? [], null);
$this->setIfExists('recurringDetailReference', $data ?? [], null);
$this->setIfExists('storedPaymentMethodId', $data ?? [], null);
$this->setIfExists('transferInstrumentId', $data ?? [], null);
$this->setIfExists('type', $data ?? [], null);
}

Expand Down Expand Up @@ -623,6 +630,30 @@ public function setStoredPaymentMethodId($storedPaymentMethodId)
return $this;
}

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

/**
* Sets transferInstrumentId
*
* @param string|null $transferInstrumentId The unique identifier of your user's verified transfer instrument, which you can use to top up their balance accounts.
*
* @return self
*/
public function setTransferInstrumentId($transferInstrumentId)
{
$this->container['transferInstrumentId'] = $transferInstrumentId;

return $this;
}

/**
* Gets type
*
Expand Down
Loading

0 comments on commit 738ee9b

Please sign in to comment.