forked from LiveCarta/PayPal-PHP-SDK
57 lines
778 B
PHP
57 lines
778 B
PHP
<?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;
|
|
}
|
|
|
|
|
|
} |