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
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