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/Payer.php Normal file
View File

@@ -0,0 +1,57 @@
<?php
namespace PayPal\Api;
/**
*
*/
class Payer extends Resource {
/**
* Setter for payment_method
* @param string $payment_method
*/
public function setPayment_method($payment_method) {
$this->payment_method = $payment_method;
}
/**
* Getter for payment_method
*/
public function getPayment_method() {
return $this->payment_method;
}
/**
* Setter for payer_info
* @param PayPal\Api\PayerInfo $payer_info
*/
public function setPayer_info($payer_info) {
$this->payer_info = $payer_info;
}
/**
* Getter for payer_info
*/
public function getPayer_info() {
return $this->payer_info;
}
/**
* Setter for funding_instruments
* @param PayPal\Api\FundingInstrument $funding_instruments
*/
public function setFunding_instruments($funding_instruments) {
$this->funding_instruments = $funding_instruments;
}
/**
* Getter for funding_instruments
*/
public function getFunding_instruments() {
return $this->funding_instruments;
}
}