Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
8 | final class Redirect |
||
9 | { |
||
10 | /** |
||
11 | * @var string|null |
||
12 | * @SerializedName("RedirectUrl") |
||
13 | * @Type("string") |
||
14 | */ |
||
15 | private $redirectUrl; |
||
16 | |||
17 | /** |
||
18 | * @var bool|null |
||
19 | * @SerializedName("PaymentMeansRequired") |
||
20 | * @Type("bool") |
||
21 | */ |
||
22 | private $paymentMeansRequired; |
||
23 | |||
24 | public function getRedirectUrl(): ?string |
||
27 | } |
||
28 | |||
29 | public function isPaymentMeansRequired(): ?bool |
||
34 |