Updated stubs to support namespace

This commit is contained in:
Ganesh Hegde
2013-05-29 14:37:22 +05:30
parent 479730d1c4
commit 50d2c56f8b
37 changed files with 530 additions and 324 deletions

View File

@@ -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;