68006754bd1b4cd2e9eb6c48c6fd749aba1018e6
[WP-Plugins/glm-member-db-registrations.git] /
1 <?php
2 namespace PayPal\Api;
3
4 use PayPal\Common\PPModel;
5
6 class FundingInstrument extends PPModel {
7         /**
8          * Credit Card information.
9          * @param PayPal\Api\CreditCard $credit_card
10          */
11         public function setCreditCard($credit_card) {
12                 $this->credit_card = $credit_card;
13                 return $this;
14         }
15
16         /**
17          * Credit Card information.
18          * @return PayPal\Api\CreditCard
19          */
20         public function getCreditCard() {
21                 return $this->credit_card;
22         }
23
24         /**
25          * Credit Card information.
26          * @param PayPal\Api\CreditCard $credit_card
27          * @deprecated. Instead use setCreditCard
28          */
29         public function setCredit_card($credit_card) {
30                 $this->credit_card = $credit_card;
31                 return $this;
32         }
33         /**
34          * Credit Card information.
35          * @return PayPal\Api\CreditCard
36          * @deprecated. Instead use getCreditCard
37          */
38         public function getCredit_card() {
39                 return $this->credit_card;
40         }
41
42         /**
43          * Credit Card information.
44          * @param PayPal\Api\CreditCardToken $credit_card_token
45          */
46         public function setCreditCardToken($credit_card_token) {
47                 $this->credit_card_token = $credit_card_token;
48                 return $this;
49         }
50
51         /**
52          * Credit Card information.
53          * @return PayPal\Api\CreditCardToken
54          */
55         public function getCreditCardToken() {
56                 return $this->credit_card_token;
57         }
58
59         /**
60          * Credit Card information.
61          * @param PayPal\Api\CreditCardToken $credit_card_token
62          * @deprecated. Instead use setCreditCardToken
63          */
64         public function setCredit_card_token($credit_card_token) {
65                 $this->credit_card_token = $credit_card_token;
66                 return $this;
67         }
68         /**
69          * Credit Card information.
70          * @return PayPal\Api\CreditCardToken
71          * @deprecated. Instead use getCreditCardToken
72          */
73         public function getCredit_card_token() {
74                 return $this->credit_card_token;
75         }
76
77 }