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