1 | <?php |
||
15 | class Chargeback extends BaseEvent |
||
16 | { |
||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $order; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | private $transaction; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | private $chargebackState; |
||
31 | |||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | private $chargebackReason; |
||
36 | |||
37 | /** |
||
38 | * Chargeback constructor. |
||
39 | */ |
||
40 | 6 | public function __construct() |
|
44 | |||
45 | /** |
||
46 | * @return string |
||
47 | */ |
||
48 | 3 | public function getOrder() |
|
52 | |||
53 | /** |
||
54 | * @param string $order |
||
55 | * |
||
56 | * @return $this |
||
57 | */ |
||
58 | 1 | public function setOrder($order) |
|
64 | |||
65 | /** |
||
66 | * @return string |
||
67 | */ |
||
68 | 3 | public function getTransaction() |
|
72 | |||
73 | /** |
||
74 | * @param string $transaction |
||
75 | * |
||
76 | * @return $this |
||
77 | */ |
||
78 | 1 | public function setTransaction($transaction) |
|
84 | |||
85 | /** |
||
86 | * @return string |
||
87 | */ |
||
88 | 3 | public function getChargebackState() |
|
92 | |||
93 | /** |
||
94 | * @param string $chargebackState |
||
95 | * |
||
96 | * @return $this |
||
97 | */ |
||
98 | 2 | public function setChargebackState($chargebackState) |
|
108 | |||
109 | /** |
||
110 | * @return string |
||
111 | */ |
||
112 | 3 | public function getChargebackReason() |
|
116 | |||
117 | /** |
||
118 | * @param string $chargebackReason |
||
119 | * |
||
120 | * @return $this |
||
121 | */ |
||
122 | 2 | public function setChargebackReason($chargebackReason) |
|
132 | } |
||
133 |