forked from LiveCarta/PayPal-PHP-SDK
Initial commit
This commit is contained in:
57
lib/PayPal/Api/PaymentHistory.php
Normal file
57
lib/PayPal/Api/PaymentHistory.php
Normal 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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user