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 | public function __construct() |
||
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | public function getOrder() |
||
49 | |||
50 | /** |
||
51 | * @param string $order |
||
52 | * |
||
53 | * @return $this |
||
54 | */ |
||
55 | public function setOrder($order) |
||
61 | |||
62 | /** |
||
63 | * @return string |
||
64 | */ |
||
65 | public function getTransaction() |
||
69 | |||
70 | /** |
||
71 | * @param string $transaction |
||
72 | * |
||
73 | * @return $this |
||
74 | */ |
||
75 | public function setTransaction($transaction) |
||
81 | |||
82 | /** |
||
83 | * @return string |
||
84 | */ |
||
85 | public function getChargebackState() |
||
89 | |||
90 | /** |
||
91 | * @param string $chargebackState |
||
92 | * |
||
93 | * @return $this |
||
94 | */ |
||
95 | public function setChargebackState($chargebackState) |
||
105 | |||
106 | /** |
||
107 | * @return string |
||
108 | */ |
||
109 | public function getChargebackReason() |
||
113 | |||
114 | /** |
||
115 | * @param string $chargebackReason |
||
116 | * |
||
117 | * @return $this |
||
118 | */ |
||
119 | public function setChargebackReason($chargebackReason) |
||
129 | } |
||
130 |