forked from LiveCarta/PayPal-PHP-SDK
updated stubs
This commit is contained in:
55
lib/PayPal/Api/CreditCardHistory.php
Normal file
55
lib/PayPal/Api/CreditCardHistory.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
namespace PayPal\Api;
|
||||
|
||||
|
||||
class CreditCardHistory extends \PPModel {
|
||||
/**
|
||||
* A list of credit card resources
|
||||
* @array
|
||||
* @param PayPal\Api\CreditCard $credit-cards
|
||||
*/
|
||||
public function setCreditCards($credit-cards) {
|
||||
$this->credit-cards = $credit-cards;
|
||||
}
|
||||
|
||||
/**
|
||||
* A list of credit card resources
|
||||
* @return PayPal\Api\CreditCard
|
||||
*/
|
||||
public function getCreditCards() {
|
||||
return $this->credit-cards;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Identifier of the next element to get the next range of results.
|
||||
* @return string
|
||||
*/
|
||||
public function getNextId() {
|
||||
return $this->next_id;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user