1 <?php
2
3 namespace PayPal\Api;
4
5 /**
6 * Class ExtendedBankAccount
7 *
8 * A resource representing a bank account that can be used to fund a payment including support for SEPA.
9 *
10 * @package PayPal\Api
11 *
12 */
13 class ExtendedBankAccount extends BankAccount
14 {
15 /**
16 * Identifier of the direct debit mandate to validate. Currently supported only for EU bank accounts(SEPA).
17 * @deprecated Not publicly available
18 * @param string $mandate_reference_number
19 *
20 * @return $this
21 */
22 public function setMandateReferenceNumber($mandate_reference_number)
23 {
24 $this->mandate_reference_number = $mandate_reference_number;
25 return $this;
26 }
27
28 /**
29 * Identifier of the direct debit mandate to validate. Currently supported only for EU bank accounts(SEPA).
30 * @deprecated Not publicly available
31 * @return string
32 */
33 public function getMandateReferenceNumber()
34 {
35 return $this->mandate_reference_number;
36 }
37
38 }
39