4251e62fb32b3cec2d36edb27ed950611e9164d5
[WP-Plugins/glm-member-db.git] /
1 <?php
2 namespace PayPal\Api;
3
4 use PayPal\Common\PPModel;
5
6 class CreditCardHistory extends PPModel {
7         /**
8          * A list of credit card resources
9          * @array
10          * @param PayPal\Api\CreditCard $credit-cards
11          */
12         public function setCreditCards($credit_cards) {
13                 $this->{"credit-cards"} = $credit_cards;
14                 return $this;
15         }
16
17         /**
18          * A list of credit card resources
19          * @return PayPal\Api\CreditCard
20          */
21         public function getCreditCards() {
22                 return $this->{"credit-cards"};
23         }
24
25         /**
26          * A list of credit card resources
27          * @array
28          * @param PayPal\Api\CreditCard $credit-cards
29          * @deprecated. Instead use setCreditCards
30          */
31         public function setCredit_cards($credit_cards) {
32                 $this->{"credit-cards"} = $credit_cards;
33                 return $this;
34         }
35         /**
36          * A list of credit card resources
37          * @return PayPal\Api\CreditCard
38          * @deprecated. Instead use getCreditCards
39          */
40         public function getCredit_cards() {
41                 return $this->{"credit-cards"};
42         }
43
44         /**
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
47          */
48         public function setCount($count) {
49                 $this->count = $count;
50                 return $this;
51         }
52
53         /**
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.
55          * @return integer
56          */
57         public function getCount() {
58                 return $this->count;
59         }
60
61
62         /**
63          * Identifier of the next element to get the next range of results.
64          * @param string $next_id
65          */
66         public function setNextId($next_id) {
67                 $this->next_id = $next_id;
68                 return $this;
69         }
70
71         /**
72          * Identifier of the next element to get the next range of results.
73          * @return string
74          */
75         public function getNextId() {
76                 return $this->next_id;
77         }
78
79         /**
80          * Identifier of the next element to get the next range of results.
81          * @param string $next_id
82          * @deprecated. Instead use setNextId
83          */
84         public function setNext_id($next_id) {
85                 $this->next_id = $next_id;
86                 return $this;
87         }
88         /**
89          * Identifier of the next element to get the next range of results.
90          * @return string
91          * @deprecated. Instead use getNextId
92          */
93         public function getNext_id() {
94                 return $this->next_id;
95         }
96
97 }