@@ -27,6 +27,100 @@ class PaymentResultInfo
2727
2828 public $ creditPayPlan ;
2929
30+ public $ cardholderName ;
31+
32+ public $ cardBin ;
33+
34+ public $ lastFour ;
35+
36+ public $ expiryMonth ;
37+
38+ public $ expiryYear ;
39+
40+
41+
42+ /**
43+ * @return mixed
44+ */
45+ public function getCardholderName ()
46+ {
47+ return $ this ->cardholderName ;
48+ }
49+
50+ /**
51+ * @param mixed $cardholderName
52+ */
53+ public function setCardholderName ($ cardholderName ): void
54+ {
55+ $ this ->cardholderName = $ cardholderName ;
56+ }
57+
58+ /**
59+ * @return mixed
60+ */
61+ public function getCardBin ()
62+ {
63+ return $ this ->cardBin ;
64+ }
65+
66+ /**
67+ * @param mixed $cardBin
68+ */
69+ public function setCardBin ($ cardBin ): void
70+ {
71+ $ this ->cardBin = $ cardBin ;
72+ }
73+
74+ /**
75+ * @return mixed
76+ */
77+ public function getLastFour ()
78+ {
79+ return $ this ->lastFour ;
80+ }
81+
82+ /**
83+ * @param mixed $lastFour
84+ */
85+ public function setLastFour ($ lastFour ): void
86+ {
87+ $ this ->lastFour = $ lastFour ;
88+ }
89+
90+ /**
91+ * @return mixed
92+ */
93+ public function getExpiryMonth ()
94+ {
95+ return $ this ->expiryMonth ;
96+ }
97+
98+ /**
99+ * @param mixed $expiryMonth
100+ */
101+ public function setExpiryMonth ($ expiryMonth ): void
102+ {
103+ $ this ->expiryMonth = $ expiryMonth ;
104+ }
105+
106+ /**
107+ * @return mixed
108+ */
109+ public function getExpiryYear ()
110+ {
111+ return $ this ->expiryYear ;
112+ }
113+
114+ /**
115+ * @param mixed $expiryYear
116+ */
117+ public function setExpiryYear ($ expiryYear ): void
118+ {
119+ $ this ->expiryYear = $ expiryYear ;
120+ }
121+
122+
123+
30124 /**
31125 * @return mixed
32126 */
0 commit comments