Initial commit

This commit is contained in:
aydiv
2013-03-06 18:42:06 +05:30
commit 69cb3c4dcb
101 changed files with 6222 additions and 0 deletions

57
lib/PayPal/Api/Payee.php Normal file
View File

@@ -0,0 +1,57 @@
<?php
namespace PayPal\Api;
/**
*
*/
class Payee extends Resource {
/**
* Setter for merchant_id
* @param string $merchant_id
*/
public function setMerchant_id($merchant_id) {
$this->merchant_id = $merchant_id;
}
/**
* Getter for merchant_id
*/
public function getMerchant_id() {
return $this->merchant_id;
}
/**
* Setter for email
* @param string $email
*/
public function setEmail($email) {
$this->email = $email;
}
/**
* Getter for email
*/
public function getEmail() {
return $this->email;
}
/**
* Setter for phone
* @param string $phone
*/
public function setPhone($phone) {
$this->phone = $phone;
}
/**
* Getter for phone
*/
public function getPhone() {
return $this->phone;
}
}