Total Complexity | 4 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
13 | final class AuthorizeReferencedResponse extends Response |
||
14 | { |
||
15 | /** |
||
16 | * @var Transaction|null |
||
17 | * @SerializedName("Transaction") |
||
18 | * @Type("Ticketpark\SaferpayJson\Response\Container\Transaction") |
||
19 | */ |
||
20 | private $transaction; |
||
21 | |||
22 | /** |
||
23 | * @var PaymentMeans|null |
||
24 | * @SerializedName("PaymentMeans") |
||
25 | * @Type("Ticketpark\SaferpayJson\Response\Container\PaymentMeans") |
||
26 | */ |
||
27 | private $paymentMeans; |
||
28 | |||
29 | /** |
||
30 | * @var Payer|null |
||
31 | * @SerializedName("Payer") |
||
32 | * @Type("Ticketpark\SaferpayJson\Response\Container\Payer") |
||
33 | */ |
||
34 | private $payer; |
||
35 | |||
36 | /** |
||
37 | * @var Dcc|null |
||
38 | * @SerializedName("Dcc") |
||
39 | * @Type("Ticketpark\SaferpayJson\Response\Container\Dcc") |
||
40 | */ |
||
41 | private $dcc; |
||
42 | |||
43 | public function getTransaction(): ?Transaction |
||
44 | { |
||
45 | return $this->transaction; |
||
46 | } |
||
47 | |||
48 | public function getPaymentMeans(): ?PaymentMeans |
||
51 | } |
||
52 | |||
53 | public function getPayer(): ?Payer |
||
54 | { |
||
55 | return $this->payer; |
||
56 | } |
||
57 | |||
58 | public function getDcc(): ?Dcc |
||
61 | } |
||
62 | } |
||
63 |