Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
12 | final class RefundResponse extends Response |
||
13 | { |
||
14 | /** |
||
15 | * @var Transaction |
||
16 | * @SerializedName("Transaction") |
||
17 | * @Type("Ticketpark\SaferpayJson\Response\Container\Transaction") |
||
18 | */ |
||
19 | private $transaction; |
||
20 | |||
21 | /** |
||
22 | * @var PaymentMeans |
||
23 | * @SerializedName("PaymentMeans") |
||
24 | * @Type("Ticketpark\SaferpayJson\Response\Container\PaymentMeans") |
||
25 | */ |
||
26 | private $paymentMeans; |
||
27 | |||
28 | /** |
||
29 | * @var Dcc |
||
30 | * @SerializedName("Dcc") |
||
31 | * @Type("Ticketpark\SaferpayJson\Response\Container\Dcc") |
||
32 | */ |
||
33 | private $dcc; |
||
34 | |||
35 | public function getTransaction(): ?Transaction |
||
38 | } |
||
39 | |||
40 | public function getPaymentMeans(): ?PaymentMeans |
||
41 | { |
||
42 | return $this->paymentMeans; |
||
43 | } |
||
44 | |||
45 | public function getDcc(): ?Dcc |
||
48 | } |
||
49 | } |
||
50 |