1 <?php
2
3 namespace PayPal\Api;
4
5 use PayPal\Common\PayPalModel;
6
7 /**
8 * Class PotentialPayerInfo
9 *
10 * A resource representing a information about a potential Payer.
11 *
12 * @package PayPal\Api
13 *
14 */
15 class PotentialPayerInfo extends PayPalModel
16 {
17 /**
18 * Email address representing the potential payer.
19 * @deprecated Not publicly available
20 * @param string $email
21 *
22 * @return $this
23 */
24 public function setEmail($email)
25 {
26 $this->email = $email;
27 return $this;
28 }
29
30 /**
31 * Email address representing the potential payer.
32 * @deprecated Not publicly available
33 * @return string
34 */
35 public function getEmail()
36 {
37 return $this->email;
38 }
39
40 /**
41 * ExternalRememberMe id representing the potential payer
42 * @deprecated Not publicly available
43 * @param string $external_remember_me_id
44 *
45 * @return $this
46 */
47 public function setExternalRememberMeId($external_remember_me_id)
48 {
49 $this->external_remember_me_id = $external_remember_me_id;
50 return $this;
51 }
52
53 /**
54 * ExternalRememberMe id representing the potential payer
55 * @deprecated Not publicly available
56 * @return string
57 */
58 public function getExternalRememberMeId()
59 {
60 return $this->external_remember_me_id;
61 }
62
63 /**
64 * Account Number representing the potential payer
65 * @deprecated Not publicly available
66 * @param string $account_number
67 *
68 * @return $this
69 */
70 public function setAccountNumber($account_number)
71 {
72 $this->account_number = $account_number;
73 return $this;
74 }
75
76 /**
77 * Account Number representing the potential payer
78 * @deprecated Not publicly available
79 * @return string
80 */
81 public function getAccountNumber()
82 {
83 return $this->account_number;
84 }
85
86 /**
87 * Billing address of the potential payer.
88 * @deprecated Not publicly available
89 * @param \PayPal\Api\Address $billing_address
90 *
91 * @return $this
92 */
93 public function setBillingAddress($billing_address)
94 {
95 $this->billing_address = $billing_address;
96 return $this;
97 }
98
99 /**
100 * Billing address of the potential payer.
101 * @deprecated Not publicly available
102 * @return \PayPal\Api\Address
103 */
104 public function getBillingAddress()
105 {
106 return $this->billing_address;
107 }
108
109 }
110