Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
9 | final class InitializeResponse extends Response |
||
10 | { |
||
11 | /** |
||
12 | * @var string|null |
||
13 | * @SerializedName("Token") |
||
14 | * @Type("string") |
||
15 | */ |
||
16 | private $token; |
||
17 | |||
18 | /** |
||
19 | * @var \DateTime|null |
||
20 | * @SerializedName("Expiration") |
||
21 | * @Type("string") |
||
22 | */ |
||
23 | private $expiration; |
||
24 | |||
25 | /** |
||
26 | * @var string|null |
||
27 | * @SerializedName("RedirectUrl") |
||
28 | * @Type("string") |
||
29 | */ |
||
30 | private $redirectUrl; |
||
31 | |||
32 | public function getToken(): ?string |
||
35 | } |
||
36 | |||
37 | public function getExpiration(): ?\DateTime |
||
38 | { |
||
39 | return $this->expiration; |
||
40 | } |
||
41 | |||
42 | public function getRedirectUrl(): ?string |
||
45 | } |
||
46 | } |
||
47 |