forked from LiveCarta/PayPal-PHP-SDK
98 lines
2.2 KiB
PHP
98 lines
2.2 KiB
PHP
<?php
|
|
namespace PayPal\Api;
|
|
|
|
use PayPal\Common\PPModel;
|
|
|
|
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;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* A list of credit card resources
|
|
* @return PayPal\Api\CreditCard
|
|
*/
|
|
public function getCreditCards() {
|
|
return $this->{"credit-cards"};
|
|
}
|
|
|
|
/**
|
|
* A list of credit card resources
|
|
* @array
|
|
* @param PayPal\Api\CreditCard $credit-cards
|
|
* @deprecated. Instead use setCreditCards
|
|
*/
|
|
public function setCredit_cards($credit_cards) {
|
|
$this->{"credit-cards"} = $credit_cards;
|
|
return $this;
|
|
}
|
|
/**
|
|
* A list of credit card resources
|
|
* @return PayPal\Api\CreditCard
|
|
* @deprecated. Instead use getCreditCards
|
|
*/
|
|
public function getCredit_cards() {
|
|
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;
|
|
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;
|
|
}
|
|
|
|
}
|