Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
8 | final class PaymentMethodsOptions |
||
9 | { |
||
10 | /** |
||
11 | * @var Alipay|null |
||
12 | * @SerializedName("Alipay") |
||
13 | */ |
||
14 | private $alipay; |
||
15 | |||
16 | /** |
||
17 | * @var Ideal|null |
||
18 | * @SerializedName("Ideal") |
||
19 | */ |
||
20 | private $ideal; |
||
21 | |||
22 | public function getAlipay(): ?Alipay |
||
25 | } |
||
26 | |||
27 | public function setAlipay(?Alipay $alipay): self |
||
28 | { |
||
29 | $this->alipay = $alipay; |
||
30 | |||
31 | return $this; |
||
32 | } |
||
33 | |||
34 | public function getIdeal(): ?Ideal |
||
35 | { |
||
36 | return $this->ideal; |
||
37 | } |
||
38 | |||
39 | public function setIdeal(?Ideal $ideal): self |
||
44 | } |
||
45 | } |
||
46 |