4 use PayPal\Common\PPModel;
6 class Payee extends PPModel {
8 * Email Address associated with the Payee's PayPal Account. If the provided email address is not associated with any PayPal Account, the payee can only receiver PayPal Wallet Payments. Direct Credit Card Payments will be denied due to card compliance requirements.
11 public function setEmail($email) {
12 $this->email = $email;
17 * Email Address associated with the Payee's PayPal Account. If the provided email address is not associated with any PayPal Account, the payee can only receiver PayPal Wallet Payments. Direct Credit Card Payments will be denied due to card compliance requirements.
20 public function getEmail() {
26 * Encrypted PayPal Account identifier for the Payee.
27 * @param string $merchant_id
29 public function setMerchantId($merchant_id) {
30 $this->merchant_id = $merchant_id;
35 * Encrypted PayPal Account identifier for the Payee.
38 public function getMerchantId() {
39 return $this->merchant_id;
43 * Encrypted PayPal Account identifier for the Payee.
44 * @param string $merchant_id
45 * @deprecated. Instead use setMerchantId
47 public function setMerchant_id($merchant_id) {
48 $this->merchant_id = $merchant_id;
52 * Encrypted PayPal Account identifier for the Payee.
54 * @deprecated. Instead use getMerchantId
56 public function getMerchant_id() {
57 return $this->merchant_id;
61 * Phone number (in E.123 format) associated with the Payee's PayPal Account. If the provided phont number is not associated with any PayPal Account, the payee can only receiver PayPal Wallet Payments. Direct Credit Card Payments will be denied due to card compliance requirements.
62 * @param string $phone
64 public function setPhone($phone) {
65 $this->phone = $phone;
70 * Phone number (in E.123 format) associated with the Payee's PayPal Account. If the provided phont number is not associated with any PayPal Account, the payee can only receiver PayPal Wallet Payments. Direct Credit Card Payments will be denied due to card compliance requirements.
73 public function getPhone() {