4 use PayPal\Common\PPModel;
6 class CreditCardHistory extends PPModel {
8 * A list of credit card resources
10 * @param PayPal\Api\CreditCard $credit-cards
12 public function setCreditCards($credit_cards) {
13 $this->{"credit-cards"} = $credit_cards;
18 * A list of credit card resources
19 * @return PayPal\Api\CreditCard
21 public function getCreditCards() {
22 return $this->{"credit-cards"};
26 * A list of credit card resources
28 * @param PayPal\Api\CreditCard $credit-cards
29 * @deprecated. Instead use setCreditCards
31 public function setCredit_cards($credit_cards) {
32 $this->{"credit-cards"} = $credit_cards;
36 * A list of credit card resources
37 * @return PayPal\Api\CreditCard
38 * @deprecated. Instead use getCreditCards
40 public function getCredit_cards() {
41 return $this->{"credit-cards"};
45 * 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.
46 * @param integer $count
48 public function setCount($count) {
49 $this->count = $count;
54 * 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.
57 public function getCount() {
63 * Identifier of the next element to get the next range of results.
64 * @param string $next_id
66 public function setNextId($next_id) {
67 $this->next_id = $next_id;
72 * Identifier of the next element to get the next range of results.
75 public function getNextId() {
76 return $this->next_id;
80 * Identifier of the next element to get the next range of results.
81 * @param string $next_id
82 * @deprecated. Instead use setNextId
84 public function setNext_id($next_id) {
85 $this->next_id = $next_id;
89 * Identifier of the next element to get the next range of results.
91 * @deprecated. Instead use getNextId
93 public function getNext_id() {
94 return $this->next_id;