forked from LiveCarta/PayPal-PHP-SDK
updated stubs
This commit is contained in:
@@ -1,60 +1,55 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
namespace PayPal\Api;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
class PaymentHistory extends Resource {
|
||||
|
||||
|
||||
class PaymentHistory extends \PPModel {
|
||||
/**
|
||||
* Setter for payments
|
||||
* A list of Payment resources
|
||||
* @array
|
||||
* @param PayPal\Api\Payment $payments
|
||||
*/
|
||||
*/
|
||||
public function setPayments($payments) {
|
||||
$this->payments = $payments;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for payments
|
||||
* A list of Payment resources
|
||||
* @return PayPal\Api\Payment
|
||||
*/
|
||||
*/
|
||||
public function getPayments() {
|
||||
return $this->payments;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Setter for count
|
||||
* 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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for count
|
||||
* 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;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Setter for next_id
|
||||
* Identifier of the next element to get the next range of results.
|
||||
* @param string $next_id
|
||||
*/
|
||||
public function setNext_id($next_id) {
|
||||
*/
|
||||
public function setNextId($next_id) {
|
||||
$this->next_id = $next_id;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for next_id
|
||||
* Identifier of the next element to get the next range of results.
|
||||
* @return string
|
||||
*/
|
||||
public function getNext_id() {
|
||||
*/
|
||||
public function getNextId() {
|
||||
return $this->next_id;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user