Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | final class Liability |
||
11 | { |
||
12 | /** |
||
13 | * @var bool|null |
||
14 | * @SerializedName("LiabilityShift") |
||
15 | * @Type("boolean") |
||
16 | */ |
||
17 | private $liabilityShift; |
||
18 | |||
19 | /** |
||
20 | * @var string|null |
||
21 | * @SerializedName("LiableEntity") |
||
22 | * @Type("string") |
||
23 | */ |
||
24 | private $liableEntity; |
||
25 | |||
26 | /** |
||
27 | * @var ThreeDs|null |
||
28 | * @SerializedName("ThreeDs") |
||
29 | * @Type("Ticketpark\SaferpayJson\Response\Container\ThreeDs") |
||
30 | */ |
||
31 | private $threeDs; |
||
32 | |||
33 | public function isLiabilityShift(): ?bool |
||
36 | } |
||
37 | |||
38 | public function getLiableEntity(): ?string |
||
41 | } |
||
42 | |||
43 | public function getThreeDs(): ?ThreeDs |
||
48 |