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

View File

@@ -0,0 +1,57 @@
<?php
namespace PayPal\Api;
/**
*
*/
class PaymentHistory extends Resource {
/**
* Setter for payments
* @param PayPal\Api\Payment $payments
*/
public function setPayments($payments) {
$this->payments = $payments;
}
/**
* Getter for payments
*/
public function getPayments() {
return $this->payments;
}
/**
* Setter for count
* @param integer $count
*/
public function setCount($count) {
$this->count = $count;
}
/**
* Getter for count
*/
public function getCount() {
return $this->count;
}
/**
* Setter for next_id
* @param string $next_id
*/
public function setNext_id($next_id) {
$this->next_id = $next_id;
}
/**
* Getter for next_id
*/
public function getNext_id() {
return $this->next_id;
}
}