1 | <?php |
||
8 | class CreditCardToken extends AbstractModel |
||
9 | { |
||
10 | /** |
||
11 | * @JMS\Type("string") |
||
12 | * @JMS\SerializedName("credit_card_id") |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $creditCardId; |
||
17 | |||
18 | /** |
||
19 | * @JMS\Type("string") |
||
20 | * @JMS\SerializedName("payer_id") |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $payerId; |
||
25 | |||
26 | /** |
||
27 | * @JMS\Type("string") |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $last4; |
||
32 | |||
33 | /** |
||
34 | * @JMS\Type("string") |
||
35 | * |
||
36 | * @var string |
||
37 | */ |
||
38 | protected $type; |
||
39 | |||
40 | /** |
||
41 | * @JMS\Type("integer") |
||
42 | * @JMS\SerializedNamew("expire_year") |
||
43 | * |
||
44 | * @var int |
||
45 | */ |
||
46 | protected $expireYear; |
||
47 | |||
48 | /** |
||
49 | * @JMS\Type("integer") |
||
50 | * @JMS\SerializedName("expire_month") |
||
51 | * |
||
52 | * @var int |
||
53 | */ |
||
54 | protected $expireMonth; |
||
55 | |||
56 | /** |
||
57 | * @return string |
||
58 | */ |
||
59 | public function getCreditCardId() |
||
63 | |||
64 | /** |
||
65 | * @param string $creditCardId |
||
66 | */ |
||
67 | public function setCreditCardId($creditCardId) |
||
71 | |||
72 | /** |
||
73 | * @return int |
||
74 | */ |
||
75 | public function getExpireMonth() |
||
79 | |||
80 | /** |
||
81 | * @param int $expireMonth |
||
82 | */ |
||
83 | public function setExpireMonth($expireMonth) |
||
87 | |||
88 | /** |
||
89 | * @return int |
||
90 | */ |
||
91 | public function getExpireYear() |
||
95 | |||
96 | /** |
||
97 | * @param int $expireYear |
||
98 | */ |
||
99 | public function setExpireYear($expireYear) |
||
103 | |||
104 | /** |
||
105 | * @return string |
||
106 | */ |
||
107 | public function getLast4() |
||
111 | |||
112 | /** |
||
113 | * @param string $last4 |
||
114 | */ |
||
115 | public function setLast4($last4) |
||
119 | |||
120 | /** |
||
121 | * @return string |
||
122 | */ |
||
123 | public function getPayerId() |
||
127 | |||
128 | /** |
||
129 | * @param string $payerId |
||
130 | */ |
||
131 | public function setPayerId($payerId) |
||
135 | |||
136 | /** |
||
137 | * @return string |
||
138 | */ |
||
139 | public function getType() |
||
143 | |||
144 | /** |
||
145 | * @param string $type |
||
146 | */ |
||
147 | public function setType($type) |
||
151 | } |
||
152 |