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