This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/lib/PayPal/Api/PaymentHistory.php
2014-03-28 20:34:07 +05:30

89 lines
1.7 KiB
PHP

<?php
namespace PayPal\Api;
use PayPal\Common\PPModel;
use PayPal\Rest\ApiContext;
class PaymentHistory extends PPModel {
/**
* A list of Payment resources
*
* @array
* @param PayPal\Api\Payment $payments
*/
public function setPayments($payments) {
$this->payments = $payments;
return $this;
}
/**
* A list of Payment resources
*
* @return PayPal\Api\Payment
*/
public function getPayments() {
return $this->payments;
}
/**
* Number of items returned in each range of results. Note that the last results range could have fewer items than the requested number of items.
*
* @param integer $count
*/
public function setCount($count) {
$this->count = $count;
return $this;
}
/**
* Number of items returned in each range of results. Note that the last results range could have fewer items than the requested number of items.
*
* @return integer
*/
public function getCount() {
return $this->count;
}
/**
* Identifier of the next element to get the next range of results.
*
* @param string $next_id
*/
public function setNextId($next_id) {
$this->next_id = $next_id;
return $this;
}
/**
* Identifier of the next element to get the next range of results.
*
* @return string
*/
public function getNextId() {
return $this->next_id;
}
/**
* Identifier of the next element to get the next range of results.
*
* @param string $next_id
* @deprecated. Instead use setNextId
*/
public function setNext_id($next_id) {
$this->next_id = $next_id;
return $this;
}
/**
* Identifier of the next element to get the next range of results.
*
* @return string
* @deprecated. Instead use getNextId
*/
public function getNext_id() {
return $this->next_id;
}
}