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

60 lines
849 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
* @return PayPal\Api\Payment
*/
public function getPayments() {
return $this->payments;
}
/**
* Setter for count
* @param integer $count
*/
public function setCount($count) {
$this->count = $count;
}
/**
* Getter for count
* @return integer
*/
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
* @return string
*/
public function getNext_id() {
return $this->next_id;
}
}