1 | <?php |
||
7 | class RefundCapturedReservation extends Response |
||
8 | { |
||
9 | use ResultTrait; |
||
10 | use TransactionsTrait; |
||
11 | |||
12 | /** |
||
13 | * @var float |
||
14 | */ |
||
15 | protected $refundAmount; |
||
16 | |||
17 | /** |
||
18 | * @var int |
||
19 | */ |
||
20 | protected $refundCurrency; |
||
21 | |||
22 | /** |
||
23 | * @deprecated |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $refundResult; |
||
27 | |||
28 | /** |
||
29 | * @return float |
||
30 | */ |
||
31 | public function getRefundAmount(): float |
||
35 | |||
36 | /** |
||
37 | * @return int |
||
38 | */ |
||
39 | public function getRefundCurrency(): int |
||
43 | |||
44 | /** |
||
45 | * @deprecated |
||
46 | * @return string |
||
47 | */ |
||
48 | public function getRefundResult(): string |
||
52 | |||
53 | 3 | protected function init() |
|
63 | } |
||
64 |
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.