This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/lib/PayPal/Api/Payee.php
Ganesh Hegde 11f91adee4 updated stubs
2013-05-27 11:53:45 +05:30

55 lines
1.8 KiB
PHP

<?php
namespace PayPal\Api;
class Payee extends \PPModel {
/**
* 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.
* @param string $email
*/
public function setEmail($email) {
$this->email = $email;
}
/**
* 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.
* @return string
*/
public function getEmail() {
return $this->email;
}
/**
* Encrypted PayPal Account identifier for the Payee.
* @param string $merchant_id
*/
public function setMerchantId($merchant_id) {
$this->merchant_id = $merchant_id;
}
/**
* Encrypted PayPal Account identifier for the Payee.
* @return string
*/
public function getMerchantId() {
return $this->merchant_id;
}
/**
* 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.
* @param string $phone
*/
public function setPhone($phone) {
$this->phone = $phone;
}
/**
* 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.
* @return string
*/
public function getPhone() {
return $this->phone;
}
}