forked from LiveCarta/PayPal-PHP-SDK
Updated stubs to support namespace
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
<?php
|
||||
namespace PayPal\Api;
|
||||
|
||||
use PayPal\Common\PPModel;
|
||||
|
||||
class Payee extends \PPModel {
|
||||
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
|
||||
@@ -39,14 +40,18 @@ class Payee extends \PPModel {
|
||||
}
|
||||
|
||||
/**
|
||||
* Deprecated method
|
||||
* Encrypted PayPal Account identifier for the Payee.
|
||||
* @param string $merchant_id
|
||||
* @deprecated. Instead use setMerchantId
|
||||
*/
|
||||
public function setMerchant_id($merchant_id) {
|
||||
$this->merchant_id = $merchant_id;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Deprecated method
|
||||
* Encrypted PayPal Account identifier for the Payee.
|
||||
* @return string
|
||||
* @deprecated. Instead use getMerchantId
|
||||
*/
|
||||
public function getMerchant_id() {
|
||||
return $this->merchant_id;
|
||||
|
||||
Reference in New Issue
Block a user