Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
8 | final class ResponseHeader |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | * @SerializedName("SpecVersion") |
||
13 | * @Type("string") |
||
14 | */ |
||
15 | private $specVersion; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | * @SerializedName("RequestId") |
||
20 | * @Type("string") |
||
21 | */ |
||
22 | private $requestId; |
||
23 | |||
24 | public function getSpecVersion(): string |
||
27 | } |
||
28 | |||
29 | public function getRequestId(): string |
||
34 |