mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-10 21:08:41 +00:00
39 lines
978 B
PHP
39 lines
978 B
PHP
<?php
|
|
|
|
namespace PayPal\Api;
|
|
|
|
/**
|
|
* Class ExtendedBankAccount
|
|
*
|
|
* A resource representing a bank account that can be used to fund a payment including support for SEPA.
|
|
*
|
|
* @package PayPal\Api
|
|
*
|
|
*/
|
|
class ExtendedBankAccount extends BankAccount
|
|
{
|
|
/**
|
|
* Identifier of the direct debit mandate to validate. Currently supported only for EU bank accounts(SEPA).
|
|
* @deprecated Not publicly available
|
|
* @param string $mandate_reference_number
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setMandateReferenceNumber($mandate_reference_number)
|
|
{
|
|
$this->mandate_reference_number = $mandate_reference_number;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Identifier of the direct debit mandate to validate. Currently supported only for EU bank accounts(SEPA).
|
|
* @deprecated Not publicly available
|
|
* @return string
|
|
*/
|
|
public function getMandateReferenceNumber()
|
|
{
|
|
return $this->mandate_reference_number;
|
|
}
|
|
|
|
}
|